diff options
| author | hmj6502 <hashim@hmj6502.com> | 2025-12-28 15:38:17 +0000 |
|---|---|---|
| committer | hmj6502 <hashim@hmj6502.com> | 2025-12-28 20:09:45 +0000 |
| commit | d1066e7a26d8da0d1ed2e15997a485879e46611d (patch) | |
| tree | 1fea05df5fd2d5205388827cc92f196fd3f44db1 /formatting.py | |
| parent | b5d036762d9e4566f81e18708414fd306db6a1bc (diff) | |
| download | lock-n-log-d1066e7a26d8da0d1ed2e15997a485879e46611d.tar.gz lock-n-log-d1066e7a26d8da0d1ed2e15997a485879e46611d.tar.bz2 lock-n-log-d1066e7a26d8da0d1ed2e15997a485879e46611d.zip | |
stop/start & rest bank complete on stopwatch
- cumulative time wasn't too bad to add actually
- one id per session added
- change formatting.py so that it only counts time that is of type
'focus' as time to put on chart
- add pie chart and time in minutes rather than seconds to display.py
Diffstat (limited to 'formatting.py')
| -rw-r--r-- | formatting.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/formatting.py b/formatting.py index 9c8bffa..04f213d 100644 --- a/formatting.py +++ b/formatting.py @@ -38,7 +38,8 @@ def per_tag_per_day(file): date = rows[i]['date'] tag = rows[i]['tag'] if i > 0 and date == rows[i-1]['date']: - day_times[cur][tag] = day_times[cur].get(tag, 0) + int(rows[i]['elapsed']) + if rows[i]['type'] == 'focus': + day_times[cur][tag] = day_times[cur].get(tag, 0) + int(rows[i]['elapsed']) else: cur += 1 day_times.append({"date": date, tag: int(rows[i]['elapsed'])}) |
