Skip to content

Commit 1960d6d

Browse files
committed
Fix pyupgrade
1 parent 9744b13 commit 1960d6d

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

graphene_django/forms/types.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,9 +88,7 @@ def mutate(_root, _info, data):
8888
elif "id" not in exclude_fields:
8989
cls.id = ID(required=False)
9090

91-
super(DjangoFormInputObjectType, cls).__init_subclass_with_meta__(
92-
container=container, _meta=_meta, **options
93-
)
91+
super().__init_subclass_with_meta__(container=container, _meta=_meta, **options)
9492

9593
@staticmethod
9694
def get_enum_cnv_cls_instance(field_name, object_type):

0 commit comments

Comments
 (0)