From 1eae96fd433e4c2fbcf26745adae34d0f371b291 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?S=C3=A9bastien=20Diemer?= <sebastien.diemer@polyconseil.fr>
Date: Thu, 19 Jul 2018 23:28:20 +0200
Subject: [PATCH] fix black formatting

---
 graphene/types/tests/test_mutation.py | 15 +++++----------
 1 file changed, 5 insertions(+), 10 deletions(-)

diff --git a/graphene/types/tests/test_mutation.py b/graphene/types/tests/test_mutation.py
index bc722b4b..9755ad23 100644
--- a/graphene/types/tests/test_mutation.py
+++ b/graphene/types/tests/test_mutation.py
@@ -152,7 +152,6 @@ def test_mutation_allow_to_have_custom_args():
 
 def test_mutation_as_subclass():
     class BaseCreateUser(Mutation):
-
         class Arguments:
             name = String()
 
@@ -162,7 +161,6 @@ def test_mutation_as_subclass():
             return args
 
     class CreateUserWithPlanet(BaseCreateUser):
-
         class Arguments(BaseCreateUser.Arguments):
             planet = String()
 
@@ -178,17 +176,14 @@ def test_mutation_as_subclass():
         a = String()
 
     schema = Schema(query=Query, mutation=MyMutation)
-    result = schema.execute(''' mutation mymutation {
+    result = schema.execute(
+        """ mutation mymutation {
         createUserWithPlanet(name:"Peter", planet: "earth") {
             name
             planet
         }
     }
-    ''')
+    """
+    )
     assert not result.errors
-    assert result.data == {
-        'createUserWithPlanet': {
-            'name': 'Peter',
-            'planet': 'earth',
-        }
-    }
+    assert result.data == {"createUserWithPlanet": {"name": "Peter", "planet": "earth"}}