Skip to content

Commit

Permalink
Fixing computation of indices in malaria cure event (#272)
Browse files Browse the repository at this point in the history
  • Loading branch information
matt-graham authored May 17, 2021
1 parent b4ea12c commit 82a0c3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tlo/methods/malaria.py
Original file line number Diff line number Diff line change
Expand Up @@ -1196,7 +1196,7 @@ def apply(self, population):
(df.ma_date_tx < (self.sim.date - DateOffset(days=7)))]

# clear symptoms
all_cured = (clinical_inf + severe_inf) if len(severe_inf) else clinical_inf
all_cured = clinical_inf.union(severe_inf) if len(severe_inf) else clinical_inf

for idx in all_cured:
self.sim.modules["SymptomManager"].clear_symptoms(
Expand Down

0 comments on commit 82a0c3b

Please sign in to comment.