Skip to content

Commit 039a01c

Browse files
committed
0.0.189
1 parent d5bb601 commit 039a01c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

orso/types.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,9 @@ def __init__(self, *args, **kwargs):
8989
self._scale: int = None
9090
self._element_type: "OrsoTypes" = None
9191
self._length: int = None
92-
return super().__init__(*args, **kwargs)
92+
93+
str.__init__(self)
94+
Enum.__init__(self)
9395

9496
def is_numeric(self):
9597
"""is the typle number-based"""

0 commit comments

Comments
 (0)