8 lines
165 B
Python
8 lines
165 B
Python
from typing import Union
|
|
|
|
|
|
class Mine:
|
|
def __init__(self, pressure: Union[float, int], armed: bool):
|
|
self.armed = armed
|
|
self.pressure = pressure
|