From 3eff4b9790a96f5ce56c4799562f123e6b82c790 Mon Sep 17 00:00:00 2001 From: Joris Vink Date: Fri, 27 Aug 2021 10:12:11 +0200 Subject: [PATCH] whitespace fixes --- src/python.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/python.c b/src/python.c index 73f2fd8..b8ec42f 100644 --- a/src/python.c +++ b/src/python.c @@ -6200,7 +6200,7 @@ pyhttp_client_request(struct pyhttp_client *client, int m, PyObject *kwargs) default: fatal("%s: unknown method %d", __func__, m); } - + op = PyObject_New(struct pyhttp_client_op, &pyhttp_client_op_type); if (op == NULL) return (NULL);