aboutsummaryrefslogtreecommitdiffstats
path: root/hommaexceli_py/sheets_client.py
diff options
context:
space:
mode:
Diffstat (limited to 'hommaexceli_py/sheets_client.py')
-rw-r--r--hommaexceli_py/sheets_client.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/hommaexceli_py/sheets_client.py b/hommaexceli_py/sheets_client.py
index 9a09f07..95721b3 100644
--- a/hommaexceli_py/sheets_client.py
+++ b/hommaexceli_py/sheets_client.py
@@ -28,8 +28,7 @@ def _row_to_dataclass(values):
interval = _get_or_default(values, 0, "")
name = _get_or_default(values, 1, "")
- today = date.today()
- last_done = _get_or_default(values, 2, today.strftime("%Y-%m-%d"))
+ last_done = _get_or_default(values, 2, None)
return SheetsRow(interval=interval, name=name, last_done=last_done)