from .mine import Mine class StandardMine(Mine): def __init__(self, position, active=True): self.mine_type = "standard" super().__init__(position, active) def disarm(self): super().disarm()