Compare commits

..

No commits in common. "ac0d32559c3b9eeba38d13a34fb331b0b174d174" and "25662d7bda0bf5f26149485d7808d1a27baa0c0d" have entirely different histories.

1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ DAYS_EN = ["MON ", "TUE", "WED", "THU", "FRI", "SAT", "SUN"]
def load_events(csv_path:str) -> list[dict]:
events = []
with open(csv_path) as csv_file:
csv_reader = csv.reader(csv_file, skipinitialspace=True)
csv_reader = csv.reader(csv_file)
next(csv_reader, None)
for event in csv_reader:
event_date = event[0]