fix spacing
This commit is contained in:
parent
955b8031b5
commit
bc166396c7
1 changed files with 3 additions and 1 deletions
|
@ -1,9 +1,11 @@
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
|
|
||||||
|
|
||||||
def get_week(d=datetime.today()):
|
def get_week(d=datetime.today()):
|
||||||
return (int(d.strftime("%W")) + 52 - 5) % 52
|
return (int(d.strftime("%W")) + 52 - 5) % 52
|
||||||
|
|
||||||
|
|
||||||
# default is 'primary', if you are using a separate calendar for your course schedule,
|
# default is 'primary', if you are using a separate calendar for your course schedule,
|
||||||
# your calendarId (which you can find by going to your Google Calendar settings, selecting
|
# your calendarId (which you can find by going to your Google Calendar settings, selecting
|
||||||
# the relevant calendar and scrolling down to Calendar ID) probably looks like
|
# the relevant calendar and scrolling down to Calendar ID) probably looks like
|
||||||
|
|
Loading…
Reference in a new issue