From 0c41b8e98af41d67e38f64d624a65f6a857fed28 Mon Sep 17 00:00:00 2001 From: Luis Aleixo Date: Thu, 23 May 2024 09:31:45 +0200 Subject: [PATCH] changed the default value of short_range_occupants to be 0 --- caimira/apps/calculator/defaults.py | 2 +- caimira/models.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/caimira/apps/calculator/defaults.py b/caimira/apps/calculator/defaults.py index 40e6ad33..e12664eb 100644 --- a/caimira/apps/calculator/defaults.py +++ b/caimira/apps/calculator/defaults.py @@ -73,7 +73,7 @@ DEFAULTS = { 'sensor_in_use': '', 'short_range_option': 'short_range_no', 'short_range_interactions': '[]', - 'short_range_occupants': 1, + 'short_range_occupants': 0, } # ------------------ Activities ---------------------- diff --git a/caimira/models.py b/caimira/models.py index 82387f58..9275fb77 100644 --- a/caimira/models.py +++ b/caimira/models.py @@ -1580,7 +1580,7 @@ class ExposureModel: geographical_data: Cases #: Total people with short-range interactions - exposed_to_short_range: int = 1 + exposed_to_short_range: int = 0 #: The number of times the exposure event is repeated (default 1). @property