Skip to content

Commit dbde5c7

Browse files
committed
undo testing change and also using datetime instead of str for date params
1 parent aacc545 commit dbde5c7

File tree

1 file changed

+3
-4
lines changed
  • doctor_visits/delphi_doctor_visits

1 file changed

+3
-4
lines changed

doctor_visits/delphi_doctor_visits/run.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,6 @@ def run_module(params): # pylint: disable=too-many-statements
8585
## geographies
8686
geos = ["state", "msa", "hrr", "county", "hhs", "nation"]
8787

88-
8988
## print out other vars
9089
logger.info("outpath:\t\t%s", export_dir)
9190
logger.info("parallel:\t\t%s", params["indicator"]["parallel"])
@@ -104,9 +103,9 @@ def run_module(params): # pylint: disable=too-many-statements
104103
logger.info("starting %s, no adj", geo)
105104
sensor = update_sensor(
106105
filepath=claims_file,
107-
startdate=startdate,
108-
enddate=enddate,
109-
dropdate=dropdate,
106+
startdate=startdate_dt,
107+
enddate=enddate_dt,
108+
dropdate=dropdate_dt,
110109
geo=geo,
111110
parallel=params["indicator"]["parallel"],
112111
weekday=weekday,

0 commit comments

Comments
 (0)