def can_remove()

in common/skyline_math.py [0:0]


    def can_remove(self, start_time: TimeInterval, blocks: List[SkylineBlock]) -> bool:
        try:
            self._get_updated_time_series(start_time, blocks, operator.sub)
            return True
        except Exception:
            return False