Skip to content

Commit d70ddd1

Browse files
committed
Fix flake8 warnings
1 parent 4d5f9ac commit d70ddd1

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

graphql/core/execution/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ def execute(schema, root, ast, operation_name='', args=None):
3232
return e.execute(ast, root, args, operation_name, validate_ast=False)
3333

3434

35-
__all__ = ['ExecutionResult', 'Executor', 'execute']
35+
__all__ = ['ExecutionResult', 'Executor', 'execute']

graphql/core/execution/base.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020

2121
Undefined = object()
2222

23+
2324
class ExecutionContext(object):
2425
"""Data that must be available at all points during query execution.
2526

0 commit comments

Comments
 (0)