We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5799a53 commit d5bb601Copy full SHA for d5bb601
orso/types.py
@@ -84,12 +84,12 @@ class OrsoTypes(str, Enum):
84
JSONB = "JSONB"
85
_MISSING_TYPE = 0
86
87
- def __init__(self, value: str):
+ def __init__(self, *args, **kwargs):
88
self._precision: int = None
89
self._scale: int = None
90
self._element_type: "OrsoTypes" = None
91
self._length: int = None
92
- return super().__init__(value)
+ return super().__init__(*args, **kwargs)
93
94
def is_numeric(self):
95
"""is the typle number-based"""
0 commit comments