Skip to content

Commit 27faf0f

Browse files
committed
correct order for ExecutionResult kwargs
1 parent 8f823b6 commit 27faf0f

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
@@ -128,7 +128,7 @@ class ExecutionResult(object):
128128

129129
__slots__ = 'data', 'errors', 'invalid', 'extensions'
130130

131-
def __init__(self, data=None, errors=None, extensions=None, invalid=False):
131+
def __init__(self, data=None, errors=None, invalid=False, extensions=None):
132132
self.data = data
133133
self.errors = errors
134134
self.extensions = extensions or dict()

0 commit comments

Comments
 (0)