from .Bind import Bind class Block(object): binds = [] def __init__(self) -> None: pass def addBind(self, b: Bind): self.binds.append(b)