Skip to content

Commit ac272c3

Browse files
author
rawls238
committed
fixup linting issues
1 parent 4833293 commit ac272c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graphql/core/validation/rules.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ def do_types_overlap(t1, t2):
270270
if isinstance(t2, GraphQLObjectType):
271271
return t1.get_possible_types().index(t2) != -1
272272

273-
t1_type_names = { possible_type['name']: possible_type for possible_type in t1.get_possible_types() }
273+
t1_type_names = {possible_type['name']: possible_type for possible_type in t1.get_possible_types()}
274274
return any(t['name'] in t1_type_names for t in t2.get_possible_types())
275275

276276
@staticmethod

0 commit comments

Comments
 (0)