Skip to content

Commit d251a52

Browse files
committed
Fixed Python3 import error
1 parent df9dd33 commit d251a52

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graphene/core/classtypes/mutation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import six
22

3-
from ..types.argument import ArgumentsGroup
43
from .objecttype import ObjectType, ObjectTypeMeta
54

65

@@ -19,6 +18,7 @@ def construct(cls, bases, attrs):
1918
return cls
2019

2120
def construct_arguments(cls, items):
21+
from ..types.argument import ArgumentsGroup
2222
return ArgumentsGroup(**items)
2323

2424

0 commit comments

Comments
 (0)