config.py: UnsignedIntegerFieldType.__init__(): forward `**kwargs` too
[deliverable/barectf.git] / barectf / config.py
index fdd1b4461b1e2a2cbfb13351201543cace0642a7..0d6417cdfaee3f35344a42151e222ad94835ef37 100644 (file)
@@ -84,9 +84,10 @@ class _IntegerFieldType(_BitArrayFieldType):
 
 
 class UnsignedIntegerFieldType(_IntegerFieldType):
-    def __init__(self, *args):
-        super().__init__(*args)
+    def __init__(self, *args, **kwargs):
+        super().__init__(*args, **kwargs)
         self._mapped_clk_type_name = None
+        self._is_len = False
 
 
 class SignedIntegerFieldType(_IntegerFieldType):
This page took 0.022774 seconds and 4 git commands to generate.