From e7092ff4b15b437038fabc7b2f9f82fe995a86f6 Mon Sep 17 00:00:00 2001 From: Jonathan Bloedow Date: Wed, 22 Nov 2023 09:48:26 -0800 Subject: [PATCH] deduplication policy will not have a default. --- emodpy_typhoid/interventions/typhoid_vaccine.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emodpy_typhoid/interventions/typhoid_vaccine.py b/emodpy_typhoid/interventions/typhoid_vaccine.py index 7029349..b9d9642 100644 --- a/emodpy_typhoid/interventions/typhoid_vaccine.py +++ b/emodpy_typhoid/interventions/typhoid_vaccine.py @@ -38,7 +38,7 @@ def new_intervention( camp, efficacy=0.82, mode="Shedding", constant_period=0, d return intervention -def new_vax( camp, , deduplication_policy, efficacy=0.82, mode="Acquisition", constant_period=0, decay_constant=0, expected_expiration=0 ): +def new_vax( camp, deduplication_policy, efficacy=0.82, mode="Acquisition", constant_period=0, decay_constant=0, expected_expiration=0 ): """ Create a new 'SimpleVaccine' intervention with specified parameters. If you use this function directly, you'll need to distribute the intervention with a function like ScheduledCampaignEvent or TriggeredCampaignEvent from emod_api.interventions.common.