From b36e07e0b924cd31302e39f0520982bb53d0bc9d Mon Sep 17 00:00:00 2001 From: Nicolas Mounet Date: Thu, 5 Nov 2020 17:22:39 +0100 Subject: [PATCH] Changing Room volume into float (instead of int), in models.py --- cara/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cara/models.py b/cara/models.py index 805993ac..35ce83f1 100644 --- a/cara/models.py +++ b/cara/models.py @@ -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)