Skip to content

Commit f35c93c

Browse files
committed
Fixed None path
1 parent aa39cc3 commit f35c93c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graphql/execution/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ class ResolveInfo(object):
4646
'schema', 'fragments', 'root_value', 'operation', 'variable_values', 'context', 'path')
4747

4848
def __init__(self, field_name, field_asts, return_type, parent_type,
49-
schema, fragments, root_value, operation, variable_values, context, path):
49+
schema, fragments, root_value, operation, variable_values, context, path=None):
5050
self.field_name = field_name
5151
self.field_asts = field_asts
5252
self.return_type = return_type

0 commit comments

Comments
 (0)