An ADHD-friendly regular task tracker
Revisão | 178bc8d9ef6d59d3e2b0970d44f731f22ad55667 (tree) |
---|---|
Hora | 2024-01-13 12:37:05 |
Autor | Corbin <cds@corb...> |
Commiter | Corbin |
Apparently this is tuple-like, not dict-like?
Doesn't match the upstream documentation, but whatever.
@@ -44,7 +44,7 @@ order by updated_at + consequences_after_s | ||
44 | 44 | @click.argument("wheel") |
45 | 45 | def show(wheel): |
46 | 46 | for row in c.execute(show_query, (wheel,)): |
47 | - print("Task:", row["description"], "(" + row["label"] + ")") | |
47 | + print("Task:", row[1], "(" + row[0] + ")") | |
48 | 48 | |
49 | 49 | @cli.command() |
50 | 50 | @click.argument("wheel") |