From 1d07fe08b9ee82257c373cecb3f441ae06799c7f Mon Sep 17 00:00:00 2001 From: mlncn Date: Sun, 2 May 2021 12:02:23 -0400 Subject: [PATCH] Add note about what first line should be for timelog parser script --- pomodoroprompt.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pomodoroprompt.py b/pomodoroprompt.py index d32137b..2f8d9b2 100644 --- a/pomodoroprompt.py +++ b/pomodoroprompt.py @@ -80,6 +80,7 @@ def record_task(whatdid, start, end=None): if end is None: end = datetime.now(pytz.utc) with open('timelog.csv', 'a', newline='') as csvfile: + # TODO make first line started, recorded, description timewriter = csv.writer(csvfile) timewriter.writerow([start, end, whatdid])