Skip to content
Snippets Groups Projects
Commit 1ab7903a authored by Jonathan Weth's avatar Jonathan Weth :keyboard:
Browse files

Correct date in PDF (skip weekend) | Tidy up [TIMETABLE/SUBSTITUTIONS]

parent 5fa8528d
No related branches found
No related tags found
No related merge requests found
...@@ -71,7 +71,11 @@ def get_next_weekday(date): ...@@ -71,7 +71,11 @@ def get_next_weekday(date):
"""Get the next weekday by a datetime object""" """Get the next weekday by a datetime object"""
if date.isoweekday() in {6, 7}: if date.isoweekday() in {6, 7}:
date += datetime.timedelta(days=date.isoweekday() % 4) if date.isoweekday() == 6:
plus = 2
else:
plus = 1
date += datetime.timedelta(days=plus)
return date return date
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment