Skip to content

Commit

Permalink
Merge pull request #95 from filips123/xlsx-parsing
Browse files Browse the repository at this point in the history
Update parsing criteria
  • Loading branch information
PetJer authored Jan 21, 2024
2 parents ab436cd + 3c563af commit 108b3aa
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions API/gimvicurnik/updaters/eclassroom.py
Original file line number Diff line number Diff line change
Expand Up @@ -662,14 +662,12 @@ def _parse_lunch_schedule_xlsx(self, stream: BytesIO, effective: date) -> None:

# Parse lunch schedule
for ws in wb:
if ws.title != "kosilo":
continue

while not ws["A1"].value:
ws.delete_cols(1)
for column in ws.column_dimensions.values():
if column.hidden:
ws.delete_cols(1)

for wr in ws.iter_rows(min_row=3, max_col=5):
if not wr[3].value:
if not wr[3].value and wr[3].value != 0:
break

# Check for correct cell value type
Expand Down

0 comments on commit 108b3aa

Please sign in to comment.