Skip to content

Commit d5bb601

Browse files
committed
0.0.189
1 parent 5799a53 commit d5bb601

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

orso/types.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,12 +84,12 @@ class OrsoTypes(str, Enum):
8484
JSONB = "JSONB"
8585
_MISSING_TYPE = 0
8686

87-
def __init__(self, value: str):
87+
def __init__(self, *args, **kwargs):
8888
self._precision: int = None
8989
self._scale: int = None
9090
self._element_type: "OrsoTypes" = None
9191
self._length: int = None
92-
return super().__init__(value)
92+
return super().__init__(*args, **kwargs)
9393

9494
def is_numeric(self):
9595
"""is the typle number-based"""

0 commit comments

Comments
 (0)