Skip to content

Commit

Permalink
Fix import order
Browse files Browse the repository at this point in the history
  • Loading branch information
syrusakbary committed Apr 19, 2016
1 parent fe5a217 commit 117fbb0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions graphql/core/utils/type_comparators.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from ..type.definition import (GraphQLList, GraphQLNonNull, GraphQLObjectType,
GraphQLInterfaceType, GraphQLUnionType,
from ..type.definition import (GraphQLInterfaceType, GraphQLList, GraphQLNonNull,
GraphQLObjectType, GraphQLUnionType,
is_abstract_type)


Expand Down
2 changes: 1 addition & 1 deletion graphql/core/validation/rules/possible_fragment_spreads.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from ...error import GraphQLError
from ...utils.type_from_ast import type_from_ast
from ...utils.type_comparators import do_types_overlap
from ...utils.type_from_ast import type_from_ast
from .base import ValidationRule


Expand Down

0 comments on commit 117fbb0

Please sign in to comment.