Skip to content

Commit 8232865

Browse files
committed
Fixed import order
1 parent ec9be9a commit 8232865

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

graphql/utils/build_ast_schema.py

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
from collections import OrderedDict
22

33
from ..language import ast
4-
from ..type import (GraphQLArgument, GraphQLBoolean, GraphQLEnumType,
5-
GraphQLEnumValue, GraphQLField, GraphQLFloat, GraphQLID,
6-
GraphQLInputObjectField, GraphQLInputObjectType,
7-
GraphQLInt, GraphQLInterfaceType, GraphQLList,
8-
GraphQLNonNull, GraphQLObjectType, GraphQLScalarType,
9-
GraphQLSchema, GraphQLString, GraphQLUnionType, GraphQLDirective)
4+
from ..type import (GraphQLArgument, GraphQLBoolean, GraphQLDirective,
5+
GraphQLEnumType, GraphQLEnumValue, GraphQLField,
6+
GraphQLFloat, GraphQLID, GraphQLInputObjectField,
7+
GraphQLInputObjectType, GraphQLInt, GraphQLInterfaceType,
8+
GraphQLList, GraphQLNonNull, GraphQLObjectType,
9+
GraphQLScalarType, GraphQLSchema, GraphQLString,
10+
GraphQLUnionType)
1011
from ..utils.value_from_ast import value_from_ast
1112

1213

0 commit comments

Comments
 (0)