Skip to content

Commit fefd4b5

Browse files
committed
Fix linter errors.
1 parent e31a703 commit fefd4b5

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

graphql/core/utils/build_client_schema.py

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
from collections import OrderedDict
2-
from graphql.core.type.definition import get_named_type
3-
from graphql.core.type import (
2+
from ..language.parser import parse_value
3+
from ..type import (
44
GraphQLArgument,
55
GraphQLBoolean,
66
GraphQLEnumType,
77
GraphQLEnumValue,
88
GraphQLField,
99
GraphQLFloat,
1010
GraphQLID,
11-
GraphQLInputObjectType,
1211
GraphQLInputObjectField,
12+
GraphQLInputObjectType,
1313
GraphQLInt,
1414
GraphQLInterfaceType,
1515
GraphQLList,
@@ -20,10 +20,9 @@
2020
GraphQLString,
2121
GraphQLUnionType,
2222
is_input_type,
23-
is_output_type,
23+
is_output_type
2424
)
25-
from graphql.core.type.introspection import TypeKind
26-
from ..language.parser import parse_value
25+
from ..type.introspection import TypeKind
2726
from .value_from_ast import value_from_ast
2827

2928
_none = lambda *_: None

0 commit comments

Comments
 (0)