Skip to content

Commit 251c147

Browse files
committed
Multiple fixes
1 parent 3ae7370 commit 251c147

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.flake8

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
[flake8]
2+
ignore = E203,W503,E704
23
exclude = .git,.mypy_cache,.pytest_cache,.tox,.venv,__pycache__,build,dist,docs
34
max-line-length = 88

graphql/graphql.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,10 @@
33
from typing import Any, Awaitable, Callable, Dict, Union, Type, cast
44

55
from .error import GraphQLError
6-
from .execution import execute, ExecutionResult, Middleware
6+
from .execution import execute, ExecutionResult, ExecutionContext, Middleware
77
from .language import parse, Source
88
from .pyutils import MaybeAwaitable
99
from .type import GraphQLSchema, validate_schema
10-
from .execution.execute import ExecutionResult, ExecutionContext
1110

1211
__all__ = ["graphql", "graphql_sync"]
1312

0 commit comments

Comments
 (0)