fix: .strip() weekday_key_name
All checks were successful
Build and Run VSTU Schedule Parser / build_and_run (push) Successful in 19s
All checks were successful
Build and Run VSTU Schedule Parser / build_and_run (push) Successful in 19s
This commit is contained in:
@@ -261,7 +261,7 @@ class Parser:
|
|||||||
continue
|
continue
|
||||||
|
|
||||||
pprint(weekday)
|
pprint(weekday)
|
||||||
weekday_key_name = weekday + ("_1" if weeknum == 1 else "_2")
|
weekday_key_name = (str(weekday) + ("_1" if weeknum == 1 else "_2")).strip()
|
||||||
self.push_weekday_meta(weekday, weeknum, weekday_key_name, weekday_mr)
|
self.push_weekday_meta(weekday, weeknum, weekday_key_name, weekday_mr)
|
||||||
|
|
||||||
# state
|
# state
|
||||||
|
|||||||
Reference in New Issue
Block a user