Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update parsing criteria #95

Merged
merged 1 commit into from
Jan 21, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading