Skip to content

Commit

Permalink
fix(syntax): py3 syntax;
Browse files Browse the repository at this point in the history
- PY3 unicodecsv class attribute.
  • Loading branch information
JVickery-TBS committed Jan 9, 2024
1 parent 2b40015 commit a08ff41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ckanext/recombinant/read_csv.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def csv_data_batch(csv_path, chromo, strict=True):

csv_in = DictReader(f)
cols = [
f for f in csv_in.unicode_fieldnames
f for f in csv_in.fieldnames
if f not in chromo.get('csv_org_extras', [])]

if strict:
Expand Down

0 comments on commit a08ff41

Please sign in to comment.