fix: groups key
All checks were successful
Build and Run VSTU Schedule Parser / build_and_run (push) Successful in 16s

This commit is contained in:
2026-04-05 13:08:09 +03:00
parent e2b96037ce
commit d81c580dde

View File

@@ -62,7 +62,7 @@ def gen_groups_from_states(states):
for state in states:
for sheet in state['sheets'].values():
gr = sheet['groups']
gr = sheet.get('groups', {})
if len(gr.keys()) == 0:
continue