Skip to content

Commit a8184fd

Browse files
committed
Fixed flake8 issues
1 parent 29e1456 commit a8184fd

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+73
-73
lines changed

graphql/backend/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from .decider import GraphQLDeciderBackend
1010
from .cache import GraphQLCachedBackend
1111

12-
if False:
12+
if False: # flake8: noqa
1313
from typing import Union
1414

1515
_default_backend = None

graphql/backend/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from abc import ABCMeta, abstractmethod
55
import six
66

7-
if False:
7+
if False: # flake8: noqa
88
from typing import Dict, Optional, Union, Callable
99
from ..language.ast import Document
1010
from ..type.schema import GraphQLSchema

graphql/backend/cache.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
from .base import GraphQLBackend
66

7-
if False:
7+
if False: # flake8: noqa
88
from typing import Any, Dict, Optional, Union, Tuple, Hashable
99
from .base import GraphQLDocument
1010

graphql/backend/compiled.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from six import string_types
22
from .base import GraphQLDocument
33

4-
if False:
4+
if False: # flake8: noqa
55
from ..type.schema import GraphQLSchema
66
from typing import Any, Optional, Dict, Callable, Union
77

graphql/backend/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
from .base import GraphQLBackend, GraphQLDocument
1010

11-
if False:
11+
if False: # flake8: noqa
1212
from typing import Any, Optional, Union
1313
from .base import GraphQLDocument
1414
from ..language.ast import Document

graphql/backend/decider.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from .base import GraphQLBackend, GraphQLDocument
22

3-
if False:
3+
if False: # flake8: noqa
44
from typing import List, Union, Any, Optional
55
from ..type.schema import GraphQLSchema
66

graphql/error/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import six
22
from ..language.location import get_location
33

4-
if False:
4+
if False: # flake8: noqa
55
from ..language.source import Source
66
from ..language.location import SourceLocation
77
from types import TracebackType

graphql/error/format_error.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from .base import GraphQLError
44

5-
if False:
5+
if False: # flake8: noqa
66
from .base import GraphQLError
77
from .located_error import GraphQLLocatedError
88
from typing import Any, Dict, Union

graphql/error/located_error.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from .base import GraphQLError
44

5-
if False:
5+
if False: # flake8: noqa
66
from ..language.ast import Field
77
from typing import List, Union
88

graphql/error/syntax_error.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from ..language.location import get_location
22
from .base import GraphQLError
33

4-
if False:
4+
if False: # flake8: noqa
55
from ..language.source import Source
66
from ..language.location import SourceLocation
77

0 commit comments

Comments
 (0)