Skip to content

Commit 3051374

Browse files
author
mongkok
committed
Fix Python 2.7 super arguments
1 parent be4a623 commit 3051374

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graphene_django/tests/test_types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ class Meta:
7878
@classmethod
7979
def __init_subclass_with_meta__(cls, _meta=None, **options):
8080
_meta = ArticleTypeOptions(cls)
81-
super().__init_subclass_with_meta__(_meta=_meta, **options)
81+
super(ArticleType, cls).__init_subclass_with_meta__(_meta=_meta, **options)
8282

8383
class Article(ArticleType):
8484
class Meta:

0 commit comments

Comments
 (0)