Skip to content

Commit

Permalink
Experiencing a type error only in remote but not local so trying this…
Browse files Browse the repository at this point in the history
… to see if it fixes it.
  • Loading branch information
DevChima committed Feb 26, 2025
1 parent 9bcacf0 commit 2571ac2
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions home/import_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -281,6 +281,7 @@ def read_xlsx(file_content: bytes) -> Iterator[dict[str, Any]]:
header = remove_trailing_nones(header)

for row in worksheet.iter_rows(min_row=2, values_only=True):
row = list(row)
row = remove_trailing_nones(row)
r = {}
if len(row) > len(header):
Expand Down

0 comments on commit 2571ac2

Please sign in to comment.