Skip to content

Commit 4e58516

Browse files
committed
pre-commit
1 parent e5de2e2 commit 4e58516

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

pycode/examples/simulation/2020_npis_sarscov2_wildtype_germany.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -536,7 +536,8 @@ def get_graph(self, end_date):
536536

537537
graph = mio.osecir.create_graph_german_county(
538538
model.parameters,
539-
mio.Date(self.start_date.year,self.start_date.month, self.start_date.day),
539+
mio.Date(self.start_date.year,
540+
self.start_date.month, self.start_date.day),
540541
mio.Date(end_date.year, end_date.month, end_date.day),
541542
scaling_factor_infected, scaling_factor_icu, pydata_dir, tnt_capacity_factor)
542543

pycode/examples/simulation/2021_vaccination_sarscov2_delta_germany.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -623,7 +623,7 @@ def get_graph(self, end_date):
623623
mobility_data_file = os.path.join(
624624
data_dir_Germany, "mobility", "commuter_mobility_2022.txt")
625625
pydata_dir = os.path.join(data_dir_Germany, "pydata")
626-
626+
627627
graph = mio.osecir.create_graph_german_county(
628628
model.parameters, self.start_date, end_date,
629629
scaling_factor_infected, scaling_factor_icu, pydata_dir, tnt_capacity_factor)

0 commit comments

Comments
 (0)