clslgrnc / tbrop

__init__ method from the base class not called PYL-W0231
Bug risk
Minor
4 years ago5 years old
__init__ method from base class 'GadgetMatrix' is not called
329
330
331class Gadget(GadgetMatrix):
332    def __init__(self, arch, instList=None, max_cost=64):333
334        self.instList = instList or []
335        self.firstInst = instList[0] if instList else None