dependabot bump pillow (#681)

* dependabot bump pillow

* updated poetry

* adding encoding to file open
This commit is contained in:
Jorge Escobar 2021-09-14 17:28:59 -04:00 committed by GitHub
commit fc5ed37fca
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 327 additions and 382 deletions

View file

@ -43,7 +43,7 @@ def get_state_fips_codes(data_path: Path) -> list:
)
fips_state_list = []
with open(fips_csv_path) as csv_file:
with open(fips_csv_path, encoding="utf-8") as csv_file:
csv_reader = csv.reader(csv_file, delimiter=",")
line_count = 0