mirror of
https://github.com/graphql-python/graphene.git
synced 2025-02-02 04:34:13 +03:00
Fixed Python3 import error
This commit is contained in:
parent
df9dd33c74
commit
d251a52442
|
@ -1,6 +1,5 @@
|
||||||
import six
|
import six
|
||||||
|
|
||||||
from ..types.argument import ArgumentsGroup
|
|
||||||
from .objecttype import ObjectType, ObjectTypeMeta
|
from .objecttype import ObjectType, ObjectTypeMeta
|
||||||
|
|
||||||
|
|
||||||
|
@ -19,6 +18,7 @@ class MutationMeta(ObjectTypeMeta):
|
||||||
return cls
|
return cls
|
||||||
|
|
||||||
def construct_arguments(cls, items):
|
def construct_arguments(cls, items):
|
||||||
|
from ..types.argument import ArgumentsGroup
|
||||||
return ArgumentsGroup(**items)
|
return ArgumentsGroup(**items)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user