Skip to content

Commit 6b56de7

Browse files
committed
Fixed import order
1 parent f2c1275 commit 6b56de7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

graphql/execution/tests/test_resolve.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
from collections import OrderedDict
33

44
from graphql import graphql
5-
from graphql.type import (GraphQLArgument, GraphQLField, GraphQLInt,
6-
GraphQLObjectType, GraphQLSchema, GraphQLString,
7-
GraphQLInputObjectType, GraphQLInputObjectField,
8-
GraphQLNonNull, GraphQLList)
5+
from graphql.type import (GraphQLArgument, GraphQLField,
6+
GraphQLInputObjectField, GraphQLInputObjectType,
7+
GraphQLInt, GraphQLList, GraphQLNonNull,
8+
GraphQLObjectType, GraphQLSchema, GraphQLString)
99

1010

1111
def _test_schema(test_field):

0 commit comments

Comments
 (0)