Skip to content

Commit 79c7d07

Browse files
committed
Fixed isort
1 parent 137ba49 commit 79c7d07

File tree

3 files changed

+5
-0
lines changed

3 files changed

+5
-0
lines changed

graphene/contrib/django/types.py

+1
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ class DjangoInterface(six.with_metaclass(
7272

7373

7474
class DjangoConnection(Connection):
75+
7576
@classmethod
7677
def from_list(cls, iterable, *args, **kwargs):
7778
iterable = maybe_queryset(iterable)

graphene/relay/types.py

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
import warnings
33
from collections import Iterable
44
from functools import wraps
5+
56
from graphql_relay.connection.arrayconnection import connection_from_list
67
from graphql_relay.node.node import to_global_id
78

setup.cfg

+3
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,6 @@ max-line-length = 120
44

55
[coverage:run]
66
omit = core/ntypes/tests/*
7+
8+
[isort]
9+
known_first_party=graphene

0 commit comments

Comments
 (0)