Skip to content

Commit

Permalink
fix type
Browse files Browse the repository at this point in the history
Co-authored-by: Rajan Mudambi <[email protected]>
  • Loading branch information
stevebachmeier and rmudambi authored Nov 13, 2024
1 parent 51477fd commit 561801a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/vivarium_inputs/interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def get_population_structure(
"""
pop = Population()
# Hack: The data_type is set to "draws" to avoid NotImplementedErros, but the
# Hack: The data_type is set to "draws" to avoid NotImplementedErrors, but the
# data is not actually draw-level data.
data_type = DataType("structure", "draws")
data = core.get_data(pop, "structure", location, years, data_type)
Expand All @@ -126,7 +126,7 @@ def get_theoretical_minimum_risk_life_expectancy() -> pd.DataFrame:
"""
pop = Population()
# Hack: The data_type is set to "draws" to avoid NotImplementedErros, but the
# Hack: The data_type is set to "draws" to avoid NotImplementedErrors, but the
# data is not actually draw-level data.
data_type = DataType("theoretical_minimum_risk_life_expectancy", "draws")
data = core.get_data(
Expand Down

0 comments on commit 561801a

Please sign in to comment.