diff --git a/graphene_django/forms/types.py b/graphene_django/forms/types.py index 7b1bb39..132095b 100644 --- a/graphene_django/forms/types.py +++ b/graphene_django/forms/types.py @@ -88,9 +88,7 @@ class DjangoFormInputObjectType(InputObjectType): elif "id" not in exclude_fields: cls.id = ID(required=False) - super(DjangoFormInputObjectType, cls).__init_subclass_with_meta__( - container=container, _meta=_meta, **options - ) + super().__init_subclass_with_meta__(container=container, _meta=_meta, **options) @staticmethod def get_enum_cnv_cls_instance(field_name, object_type):