Skip to content

Commit 3cd0bca

Browse files
committed
Fix docstring
1 parent 7089a38 commit 3cd0bca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_delphi_utils_python/data_proc/geomap/geo_data_proc.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ def create_state_hhs_crosswalk():
266266
def create_fips_population_table():
267267
"""Build a table of populations by FIPS county codes.
268268
269-
Uses US Census Bureau population data from 2020, with 2010 population data for Puerto Rico and a few exceptions.
269+
Uses US Census Bureau population data as determined by the YEAR variable, with 2010 population data for Puerto Rico and a few exceptions.
270270
"""
271271
census_pop = pd.read_csv(FIPS_POPULATION_URL, encoding="ISO-8859-1")
272272
census_pop["fips"] = census_pop.apply(lambda x: f"{x['STATE']:02d}{x['COUNTY']:03d}", axis=1)

0 commit comments

Comments
 (0)