Skip to content

Commit 6f73df7

Browse files
committed
Fix linter issue.
1 parent 19d955f commit 6f73df7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

graphql/core/utils.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -162,9 +162,9 @@ def get_field_def(schema, parent_type, field_ast):
162162
return TypeMetaFieldDef
163163
elif name == TypeNameMetaFieldDef.name and \
164164
isinstance(parent_type, (
165-
GraphQLObjectType,
166-
GraphQLInterfaceType,
167-
GraphQLUnionType,
165+
GraphQLObjectType,
166+
GraphQLInterfaceType,
167+
GraphQLUnionType,
168168
)):
169169
return TypeNameMetaFieldDef
170170
elif isinstance(parent_type, (GraphQLObjectType, GraphQLInterfaceType)):

0 commit comments

Comments
 (0)