changed the default value of short_range_occupants to be 0

This commit is contained in:
Luis Aleixo 2024-05-23 09:31:45 +02:00
parent a0d8f45424
commit 0c41b8e98a
2 changed files with 2 additions and 2 deletions

View file

@ -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 ----------------------

View file

@ -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