fix super call

This commit is contained in:
Jakub Trllo 2023-01-30 12:07:24 +01:00
parent 5d9e7cf52d
commit 0d527a477b

View file

@ -465,7 +465,7 @@ class EnumDef(AbstractAttrDef):
return self.default
def serialize(self):
data = super(TextDef, self).serialize()
data = super(EnumDef, self).serialize()
data["items"] = copy.deepcopy(self.items)
return data