fhdl/structure: add missing init
This commit is contained in:
parent
8bbfaa01fc
commit
59802bec76
|
@ -579,6 +579,7 @@ class Case(_Statement):
|
||||||
|
|
||||||
class _ArrayProxy(_Value):
|
class _ArrayProxy(_Value):
|
||||||
def __init__(self, choices, key):
|
def __init__(self, choices, key):
|
||||||
|
_Value.__init__(self)
|
||||||
self.choices = []
|
self.choices = []
|
||||||
for c in choices:
|
for c in choices:
|
||||||
if isinstance(c, (bool, int)):
|
if isinstance(c, (bool, int)):
|
||||||
|
|
Loading…
Reference in New Issue