changed the default value of short_range_occupants to be 0
This commit is contained in:
parent
a0d8f45424
commit
0c41b8e98a
2 changed files with 2 additions and 2 deletions
|
|
@ -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 ----------------------
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue