Skip to content

Commit a146383

Browse files
committed
Fix arguments to admissions and census
1 parent a88a94a commit a146383

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/cli.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,8 +123,9 @@ def main():
123123
"Recovered": p.recovered_v,
124124
}
125125
)
126-
admits_df = build_admissions_df(p.n_days, *p.dispositions)
127-
census_df = build_census_df(admits_df, *p.lengths_of_stay)
126+
127+
admits_df = build_admissions_df(p)
128+
census_df = build_census_df(admits_df, p)
128129

129130
prefix = a.prefix
130131
for df, name in (

0 commit comments

Comments
 (0)