def __isub__(self, other: Optional[bitmap]) -> bitmap: if other is None: other = NIL_BITMAP if isinstance(other, bitmap): BitMap.__isub__(self.bm, other.bm) return self raise TypeError("Invalid type {type(other)}")
def __isub__(self, other): if other is None: other = NIL_BITMAP return BitMap.__isub__(self, other)