From bc166396c7cabaca9b262e0cb2a3711e09dcb333 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maximilian=20Ke=C3=9Fler?= Date: Thu, 16 Sep 2021 18:30:54 +0200 Subject: [PATCH] fix spacing --- scripts/config.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/config.py b/scripts/config.py index 9ef3ea8..2dcf9ee 100644 --- a/scripts/config.py +++ b/scripts/config.py @@ -1,9 +1,11 @@ from datetime import datetime from pathlib import Path + def get_week(d=datetime.today()): return (int(d.strftime("%W")) + 52 - 5) % 52 + # 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 # the relevant calendar and scrolling down to Calendar ID) probably looks like @@ -18,6 +20,6 @@ ROOT = Path('~/Uni/semester-5').expanduser() DATE_FORMAT = '%a %d %b %Y' LOCALE = "de_DE.utf8" COURSE_IGNORE_FILE = '.courseignore' -COURSE_INFO_FILE = 'info.yaml' +COURSE_INFO_FILE = 'info.yaml' DEFAULT_MASTER_FILE_NAME = 'master.tex' MAX_LEN = 40