Skip to content

Commit a970d99

Browse files
committed
Fixed flake8 syntax
1 parent 4ab8e4e commit a970d99

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

graphene/contrib/django/fields.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
class DjangoConnectionField(ConnectionField):
1111

1212
def wrap_resolved(self, value, instance, args, info):
13-
schema = info.schema.graphene_schema
1413
return lazy_map(value, self.type)
1514

1615

@@ -20,7 +19,6 @@ def get_type(self, schema):
2019
return List(self.type)
2120

2221
def resolver(self, instance, args, info):
23-
schema = info.schema.graphene_schema
2422
resolved = super(LazyListField, self).resolver(instance, args, info)
2523
return lazy_map(resolved, self.type)
2624

graphene/relay/types.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
from ..core.types import (Boolean, Field, InputObjectType, Interface, List,
44
Mutation, ObjectType, String)
55
from ..core.types.argument import ArgumentsGroup
6-
from ..core.types.base import LazyType
76
from ..core.types.definitions import NonNull
87
from ..utils import memoize
98
from .fields import GlobalIDField

0 commit comments

Comments
 (0)