From 4ad053c60d249be6c18b0b525980d3466a805cc1 Mon Sep 17 00:00:00 2001 From: Agastya Mondal Date: Wed, 16 Oct 2024 11:54:58 -0700 Subject: [PATCH] Update utils/epinow2/functions.py Co-authored-by: Nate McIntosh --- utils/epinow2/functions.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/utils/epinow2/functions.py b/utils/epinow2/functions.py index 8a0d849..3fc41af 100644 --- a/utils/epinow2/functions.py +++ b/utils/epinow2/functions.py @@ -19,10 +19,10 @@ def generate_job_id(): def validate_args( state: str | None = None, - pathogen=None, - report_date=None, - reference_date=None, - data_source=None, + pathogen: str | None = None, + report_date: date | None = None, + reference_dates: list[date] | None = None, + data_source: str | None = None, ): """Checks that user-supplied arguments are valid and returns them in a standardized format for downstream use.