We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c96723c commit 6d63898Copy full SHA for 6d63898
src/attributecode/transform.py
@@ -259,7 +259,7 @@ def read_csv_rows(location):
259
"""
260
Yield rows (as a list of values) from a CSV file at `location`.
261
262
- with io.open(location, encoding='utf-8') as csvfile:
+ with io.open(location, encoding='utf-8', errors='replace') as csvfile:
263
reader = csv.reader(csvfile)
264
for row in reader:
265
yield row
0 commit comments