Skip to content

Commit d893da4

Browse files
committed
Fix typo in ResolveInfo
1 parent 045390b commit d893da4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graphql/core/execution/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ def get_field_entry_key(node):
242242
class ResolveInfo(object):
243243
def __init__(self, field_name, field_asts, return_type, parent_type, context):
244244
self.field_name = field_name
245-
self.field_ast = field_asts
245+
self.field_asts = field_asts
246246
self.return_type = return_type
247247
self.parent_type = parent_type
248248
self.context = context

0 commit comments

Comments
 (0)