Compare commits

..

No commits in common. "1cc0a156a19018d38d340abff06682bd79bcdea1" and "b8a86eca1683910f41f913ebd3e43d7d7e0e7a8d" have entirely different histories.

2 changed files with 2 additions and 6 deletions

View File

@ -1,4 +0,0 @@
debug:
uv run textual run --dev -c tt browse -v TT
console:
uv run textual console

View File

@ -21,10 +21,10 @@ db = SqliteDatabase(
class TaskStatus(Enum):
# order is used for progression in toggle
ZERO = "zero"
# order is used for sorting
WIP = "wip"
BLOCKED = "blocked"
ZERO = "zero"
DONE = "done"