Skip to content

Commit 5595fc9

Browse files
committed
Fixed import order
1 parent c085214 commit 5595fc9

File tree

1 file changed

+3
-10
lines changed

1 file changed

+3
-10
lines changed

graphql/utils/extend_schema.py

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,13 @@
88
GraphQLInterfaceType, GraphQLList,
99
GraphQLNonNull, GraphQLObjectType,
1010
GraphQLScalarType, GraphQLUnionType)
11+
from ..type.introspection import (__Directive, __DirectiveLocation,
12+
__EnumValue, __Field, __InputValue, __Schema,
13+
__Type, __TypeKind)
1114
from ..type.scalars import (GraphQLBoolean, GraphQLFloat, GraphQLID,
1215
GraphQLInt, GraphQLString)
1316
from ..type.schema import GraphQLSchema
1417
from .value_from_ast import value_from_ast
15-
from ..type.introspection import (
16-
__Schema,
17-
__Directive,
18-
__DirectiveLocation,
19-
__Type,
20-
__Field,
21-
__InputValue,
22-
__EnumValue,
23-
__TypeKind,
24-
)
2518

2619

2720
def extend_schema(schema, documentAST=None):

0 commit comments

Comments
 (0)