Skip to content

Commit e60e8ab

Browse files
committed
fix: Correct type hinting
1 parent c6c580b commit e60e8ab

File tree

1 file changed

+1
-1
lines changed
  • policyengine_us/variables/household/demographic/geographic/county

1 file changed

+1
-1
lines changed

policyengine_us/variables/household/demographic/geographic/county/county.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class county(Variable):
1818

1919
def formula(household, period, parameters):
2020
# First look if county FIPS is provided; if so, map to county name
21-
county_fips: int | None = household("county_fips", period)
21+
county_fips: "pd.Series[str]" | None = household("county_fips", period)
2222
if county_fips.all():
2323
# Find county name from dataset
2424
county_fips_codes = COUNTY_FIPS_DATASET.set_index("county_fips")

0 commit comments

Comments
 (0)