from typing import Union class Mine: def __init__(self, pressure: Union[float, int], armed: bool): self.armed = armed self.pressure = pressure