Changing Room volume into float (instead of int), in models.py

This commit is contained in:
Nicolas Mounet 2020-11-05 17:22:39 +01:00
parent bc88455d79
commit b36e07e0b9

View file

@ -38,7 +38,7 @@ Geneva_hourly_temperatures_celsius_per_hour = {
@dataclass(frozen=True)
class Room:
# The total volume of the room
volume: int
volume: float
@dataclass(frozen=True)