Skip to content

Commit 13e6b05

Browse files
committed
Fix formatting
1 parent 265e613 commit 13e6b05

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

tests/utilities/test_print_schema.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -302,9 +302,11 @@ def prints_schema_with_description():
302302
)
303303

304304
def omits_schema_of_common_names():
305-
schema = GraphQLSchema(query=GraphQLObjectType("Query", {}),
306-
mutation=GraphQLObjectType("Mutation", {}),
307-
subscription=GraphQLObjectType("Subscription", {}))
305+
schema = GraphQLSchema(
306+
query=GraphQLObjectType("Query", {}),
307+
mutation=GraphQLObjectType("Mutation", {}),
308+
subscription=GraphQLObjectType("Subscription", {}),
309+
)
308310

309311
assert expect_printed_schema(schema) == dedent(
310312
"""

0 commit comments

Comments
 (0)