fix
All checks were successful
Build and Run VSTU Compat Layer v1 / build_and_run (push) Successful in 7s

This commit is contained in:
2026-04-03 12:59:58 +03:00
parent 7d3b99bf3d
commit 280ca728d2

View File

@@ -86,10 +86,10 @@ def get_slot_key_for_event(event: dict):
w = "" w = ""
if weeknum is not None: if weeknum is not None:
w = "_WN" + str(weeknum) w += "_WN" + str(weeknum)
if weekday is not None: if weekday is not None:
w = "_WD" + str(weekday) w += "_WD" + str(weekday)
r = ('_'.join(pairs)) + ("_".join(times)) r = ('_'.join(pairs)) + ("_".join(times))
if len(r) > 0: r = "_" + r if len(r) > 0: r = "_" + r