From 0a3785c2d18192b7a17b2931aa19f4f4ea440683 Mon Sep 17 00:00:00 2001 From: markus Date: Tue, 20 Oct 2020 16:31:20 +0200 Subject: [PATCH] correct type hint on q_air_mech --- cara/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cara/models.py b/cara/models.py index ac2825f1..0a1ea586 100644 --- a/cara/models.py +++ b/cara/models.py @@ -61,7 +61,7 @@ class PeriodicHEPA(Ventilation): period: int #: How often the HEPA is switched on (minutes) duration: int #: How long the HEPA remains switched on for (minutes) - q_air_mech: int #: The rate at which the HEPA exchanges air (when switched on) + q_air_mech: float #: The rate at which the HEPA exchanges air (when switched on) def air_exchange(self, room: Room, time: float) -> float: # Returns the rate at which air is being exchanged in the given room per cubic meter at a given time