Skip to content

Commit 23f4b48

Browse files
committed
Fixed Flake8 issues :D
1 parent 16c7613 commit 23f4b48

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ matrix:
3434
script:
3535
- py.test --cov=graphql graphql tests tests_py35
3636
- python: '2.7'
37+
install: pip install flake8
3738
script:
3839
- flake8
3940
deploy:

graphql/execution/experimental/fragment.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,17 @@
44

55
from ...pyutils.cached_property import cached_property
66
from ...pyutils.default_ordered_dict import DefaultOrderedDict
7-
from ...pyutils.ordereddict import OrderedDict
87
from ...type import (GraphQLInterfaceType, GraphQLList, GraphQLNonNull,
98
GraphQLObjectType, GraphQLUnionType)
109
from ..base import ResolveInfo, Undefined, collect_fields, get_field_def
1110
from ..values import get_argument_values
1211
from ...error import GraphQLError
13-
from .utils import imap, normal_map
1412
try:
1513
from itertools import izip as zip
1614
except:
1715
pass
1816

17+
1918
def get_base_type(type):
2019
if isinstance(type, (GraphQLList, GraphQLNonNull)):
2120
return get_base_type(type.of_type)

0 commit comments

Comments
 (0)