abrezey commited on
Commit
961bc8b
·
1 Parent(s): c8b54b3

fixing typo

Browse files
Files changed (1) hide show
  1. mcp_functions/census_api_calls.py +1 -3
mcp_functions/census_api_calls.py CHANGED
@@ -91,9 +91,7 @@ def dec2020_dp_fips_lookup(
91
  raise ValueError(
92
  "Invalid geography hierarchy provided.",
93
  "Acceptable required_parent_geographies must be provided.",
94
- f"{geography_hierarchy} requires the following parent geographies: {find_required_parent_geographies(
95
- geography_hierarchy
96
- )}",
97
  )
98
  raise RuntimeError(f"Failed to fetch data from the Census API: {e} ") from e
99
 
 
91
  raise ValueError(
92
  "Invalid geography hierarchy provided.",
93
  "Acceptable required_parent_geographies must be provided.",
94
+ f"{geography_hierarchy} requires the following parent geographies: {find_required_parent_geographies(geography_hierarchy)}",
 
 
95
  )
96
  raise RuntimeError(f"Failed to fetch data from the Census API: {e} ") from e
97