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",