From 4bda161e10d9f67ca4850909d1aa7e21b95fbe77 Mon Sep 17 00:00:00 2001 From: James Turk Date: Sat, 4 Jan 2025 03:01:56 -0600 Subject: [PATCH] move TODOs into DB --- src/tt/cli.py | 2 +- src/tt/tui.py | 12 ------------ 2 files changed, 1 insertion(+), 13 deletions(-) diff --git a/src/tt/cli.py b/src/tt/cli.py index 7f15b57..d8b7e09 100644 --- a/src/tt/cli.py +++ b/src/tt/cli.py @@ -31,7 +31,7 @@ def new( name = typer.prompt("Name") if "category" in required and not category: category = typer.prompt("Category") - due = typer.prompt("Due (YYYY-MM-DD):") + # due = typer.prompt("Due (YYYY-MM-DD):") # TODO: validate/allow blank add_task(name, category, due) diff --git a/src/tt/tui.py b/src/tt/tui.py index e6ed7ae..39fb82a 100644 --- a/src/tt/tui.py +++ b/src/tt/tui.py @@ -21,18 +21,6 @@ from .utils import ( get_colored_date, ) -# Parity -# TODO: saved searches -# Nice to Have -# TODO: overview, show recent work, progress on project level -# TODO: CLI -# TODO: config- default category, types, colors -# TODO: dropdowns for status, type, category -# Eventual Goals -# TODO: task templates -# TODO: recurring -# TODO: abstraction - COLUMNS = ("ID", "Task", "Status", "Type", "Due", "Category") column_to_field = { 0: "ID",