Run format

This commit is contained in:
Jonathan Kim 2019-12-26 11:37:56 +00:00
parent 1b02624cc6
commit eabf7595ef

View File

@ -55,7 +55,10 @@ class GraphQLTestCase(TestCase):
body["variables"] = {"input": input_data} body["variables"] = {"input": input_data}
if headers: if headers:
resp = self._client.post( 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: else:
resp = self._client.post( resp = self._client.post(