Skip to content

Commit

Permalink
linter
Browse files Browse the repository at this point in the history
  • Loading branch information
crutan committed Aug 15, 2024
1 parent e44d55a commit 8b8ec1f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions pyseed/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,11 +115,11 @@ def read_map_file(mapfile_path):
maplist = list()
for rowitem in map_reader:
data = {
"from_field": rowitem[0],
"from_units": rowitem[1],
"to_table_name": rowitem[2],
"to_field": rowitem[3],
}
"from_field": rowitem[0],
"from_units": rowitem[1],
"to_table_name": rowitem[2],
"to_field": rowitem[3],
}
try:
data["is_omitted"] = True if rowitem[4].lower().strip() == "true" else False
except IndexError:
Expand Down

0 comments on commit 8b8ec1f

Please sign in to comment.