Skip to content

Commit 4789922

Browse files
committed
healthsyst: comment moved to where it belongs
1 parent 605f801 commit 4789922

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tlo/methods/healthsystem.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2650,13 +2650,13 @@ def _reset_internal_stores(self) -> None:
26502650
self._treatment_ids = defaultdict(int) # Running record of the `TREATMENT_ID`s of `HSI_Event`s
26512651
self._appts = defaultdict(int) # Running record of the Appointments of `HSI_Event`s that have run
26522652
self._appts_by_level = {_level: defaultdict(int) for _level in ('0', '1a', '1b', '2', '3', '4')}
2653+
# <--Same as `self._appts` but also split by facility_level
26532654

26542655
# Log HSI_Events that never ran to monitor shortcoming of Health System
26552656
self._never_ran_treatment_ids = defaultdict(int) # As above, but for `HSI_Event`s that never ran
26562657
self._never_ran_appts = defaultdict(int) # As above, but for `HSI_Event`s that have never ran
26572658
self._never_ran_appts_by_level = {_level: defaultdict(int) for _level in ('0', '1a', '1b', '2', '3', '4')}
26582659

2659-
# <--Same as `self._appts` but also split by facility_level
26602660
self._frac_time_used_overall = [] # Running record of the usage of the healthcare system
26612661
self._squeeze_factor_by_hsi_event_name = defaultdict(list) # Running record the squeeze-factor applying to each
26622662
# treatment_id. Key is of the form:

0 commit comments

Comments
 (0)