mirror of
https://github.com/graphql-python/graphene.git
synced 2025-02-09 08:00:39 +03:00
Remove abstract from options
This commit is contained in:
parent
f9303dab72
commit
7d59489183
|
@ -31,7 +31,6 @@ class InputObjectTypeMeta(type):
|
||||||
name=None,
|
name=None,
|
||||||
description=None,
|
description=None,
|
||||||
graphql_type=None,
|
graphql_type=None,
|
||||||
abstract=False
|
|
||||||
)
|
)
|
||||||
|
|
||||||
fields = get_fields(InputObjectType, attrs, bases)
|
fields = get_fields(InputObjectType, attrs, bases)
|
||||||
|
|
|
@ -78,7 +78,6 @@ class ObjectTypeMeta(type):
|
||||||
name=None,
|
name=None,
|
||||||
description=None,
|
description=None,
|
||||||
graphql_type=None,
|
graphql_type=None,
|
||||||
abstract=False
|
|
||||||
)
|
)
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
|
@ -117,7 +116,6 @@ class ObjectTypeMeta(type):
|
||||||
description=None,
|
description=None,
|
||||||
graphql_type=None,
|
graphql_type=None,
|
||||||
interfaces=(),
|
interfaces=(),
|
||||||
abstract=False
|
|
||||||
)
|
)
|
||||||
|
|
||||||
interfaces = tuple(options.interfaces)
|
interfaces = tuple(options.interfaces)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user