From eabf7595efdcf095023dc439ca21d38950675199 Mon Sep 17 00:00:00 2001 From: Jonathan Kim Date: Thu, 26 Dec 2019 11:37:56 +0000 Subject: [PATCH] Run format --- graphene_django/utils/testing.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/graphene_django/utils/testing.py b/graphene_django/utils/testing.py index 5a02025..8a9b994 100644 --- a/graphene_django/utils/testing.py +++ b/graphene_django/utils/testing.py @@ -55,7 +55,10 @@ class GraphQLTestCase(TestCase): body["variables"] = {"input": input_data} if headers: resp = self._client.post( - self.GRAPHQL_URL, json.dumps(body), content_type="application/json", **headers + self.GRAPHQL_URL, + json.dumps(body), + content_type="application/json", + **headers ) else: resp = self._client.post(