Skip to content
This repository has been archived by the owner on Dec 18, 2024. It is now read-only.

Commit

Permalink
fix min row
Browse files Browse the repository at this point in the history
  • Loading branch information
Guts committed Jul 8, 2019
1 parent 29d1d61 commit 33e95b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/utils/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ def thumbnails_mngr(
raise KeyError("Thumbnails - Bad worksheet headers")

# parse worksheet and populate final dict
for row in ws.iter_rows(min_row=1):
for row in ws.iter_rows(min_row=2):
if len(row) == 3 and row[0].value:
thumbnails_dict[row[0].value] = (row[1].value, row[2].value)
else:
Expand Down

0 comments on commit 33e95b9

Please sign in to comment.