Spaces:
Runtime error
Runtime error
| class Weather: | |
| def __init__(self, temp_max: int = None, temp_min: int = None, precipitation: float = None, precipitation_probability: int = None, wind_speed: float = None, comment: str = None): | |
| self.temp_max : int = temp_max | |
| self.temp_min : int = temp_min | |
| self.precipitation : float = precipitation | |
| self.precipitation_probability : int = precipitation_probability | |
| self.wind_speed : float = wind_speed | |
| self.comment : str = comment |