Skip to content

Commit 117fbb0

Browse files
committed
Fix import order
1 parent fe5a217 commit 117fbb0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

graphql/core/utils/type_comparators.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
from ..type.definition import (GraphQLList, GraphQLNonNull, GraphQLObjectType,
2-
GraphQLInterfaceType, GraphQLUnionType,
1+
from ..type.definition import (GraphQLInterfaceType, GraphQLList, GraphQLNonNull,
2+
GraphQLObjectType, GraphQLUnionType,
33
is_abstract_type)
44

55

graphql/core/validation/rules/possible_fragment_spreads.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from ...error import GraphQLError
2-
from ...utils.type_from_ast import type_from_ast
32
from ...utils.type_comparators import do_types_overlap
3+
from ...utils.type_from_ast import type_from_ast
44
from .base import ValidationRule
55

66

0 commit comments

Comments
 (0)