mirror of
https://github.com/graphql-python/graphene.git
synced 2025-02-18 12:30:37 +03:00
Code cleanup
This commit is contained in:
parent
9c27db7ed5
commit
b2151d62da
|
@ -1,10 +1,7 @@
|
||||||
from collections import OrderedDict
|
from collections import OrderedDict
|
||||||
|
|
||||||
from .base import BaseOptions, BaseType
|
from .base import BaseOptions, BaseType
|
||||||
from .field import Field
|
|
||||||
from .inputfield import InputField
|
from .inputfield import InputField
|
||||||
from .objecttype import ObjectType
|
|
||||||
from .scalars import Scalar
|
|
||||||
from .structures import List, NonNull
|
from .structures import List, NonNull
|
||||||
from .unmountedtype import UnmountedType
|
from .unmountedtype import UnmountedType
|
||||||
from .utils import yank_fields_from_attrs
|
from .utils import yank_fields_from_attrs
|
||||||
|
@ -51,6 +48,7 @@ class InputObjectTypeContainer(dict, BaseType):
|
||||||
else:
|
else:
|
||||||
return value
|
return value
|
||||||
|
|
||||||
|
|
||||||
class InputObjectType(UnmountedType, BaseType):
|
class InputObjectType(UnmountedType, BaseType):
|
||||||
'''
|
'''
|
||||||
Input Object Type Definition
|
Input Object Type Definition
|
||||||
|
|
Loading…
Reference in New Issue
Block a user