Skip to content

Commit

Permalink
Merge pull request #421 from knaaptime/ltdbreader
Browse files Browse the repository at this point in the history
fix incorrect if/else bug in store_acs
  • Loading branch information
knaaptime authored Feb 5, 2025
2 parents dad6353 + 50ead73 commit 06f807c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion geosnap/io/storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ def store_acs(years="all", level="tract", data_dir="auto"):
quilt3.Package.install("census/acs", "s3://spatial-ucr", dest=pth)

else:
if isinstance("years", (str, int)):
if isinstance(years, (str, int)):
years = [years]
p = quilt3.Package.browse("census/acs", "s3://spatial-ucr")
for year in years:
Expand Down

0 comments on commit 06f807c

Please sign in to comment.