config.py: UnsignedIntegerFieldType.__init__(): forward `**kwargs` too
authorPhilippe Proulx <eeppeliteloop@gmail.com>
Wed, 9 Sep 2020 20:43:41 +0000 (16:43 -0400)
committerPhilippe Proulx <eeppeliteloop@gmail.com>
Wed, 9 Sep 2020 20:43:41 +0000 (16:43 -0400)
Signed-off-by: Philippe Proulx <eeppeliteloop@gmail.com>
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.024292 seconds and 4 git commands to generate.