Fixed lint errors

This commit is contained in:
Syrus Akbary 2016-11-14 19:10:32 -08:00
parent 815f7528c5
commit d8ab8fec34
2 changed files with 2 additions and 0 deletions

View File

@ -151,4 +151,5 @@ class IterableConnectionField(Field):
resolver = super(IterableConnectionField, self).get_resolver(parent_resolver) resolver = super(IterableConnectionField, self).get_resolver(parent_resolver)
return partial(self.connection_resolver, resolver, self.type) return partial(self.connection_resolver, resolver, self.type)
ConnectionField = IterableConnectionField ConnectionField = IterableConnectionField

View File

@ -49,6 +49,7 @@ class Scalar(six.with_metaclass(ScalarTypeMeta, UnmountedType)):
''' '''
return cls return cls
# As per the GraphQL Spec, Integers are only treated as valid when a valid # As per the GraphQL Spec, Integers are only treated as valid when a valid
# 32-bit signed integer, providing the broadest support across platforms. # 32-bit signed integer, providing the broadest support across platforms.
# #