We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a830eb3 commit 9206ec6Copy full SHA for 9206ec6
graphene_sqlalchemy/tests/test_types.py
@@ -131,7 +131,7 @@ class Meta:
131
def __init_subclass_with_meta__(cls, custom_option=None, **options):
132
_meta = CustomOptions(cls)
133
_meta.custom_option = custom_option
134
- super().__init_subclass_with_meta__(_meta=_meta, **options)
+ super(SQLAlchemyObjectTypeWithCustomOptions, cls).__init_subclass_with_meta__(_meta=_meta, **options)
135
136
137
class ReporterWithCustomOptions(SQLAlchemyObjectTypeWithCustomOptions):
0 commit comments