Make sure DataName returns the correct value

This commit is contained in:
Odd Stråbø 2023-12-09 16:46:52 +01:00
parent b33a466c4f
commit 6544864741
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ class DataName(str, Enum):
return repr(self.value)
def __str__(self):
return repr(self)
return self.value
class DataItem: