From e968812858736f16f6d09f4c87c644be7669538f Mon Sep 17 00:00:00 2001 From: h7x4 Date: Sun, 19 Apr 2026 06:55:24 +0900 Subject: [PATCH] repl: add todo --- src/libdib/repl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libdib/repl.py b/src/libdib/repl.py index 20c21ed..1b5c8a8 100644 --- a/src/libdib/repl.py +++ b/src/libdib/repl.py @@ -34,7 +34,7 @@ def format_date(date: datetime) -> str: InteractiveItemSelectorType = TypeVar("InteractiveItemSelectorType") - +# TODO: We need a way to exit the selector without selecting an item, maybe by entering 'q' or something. class InteractiveItemSelector(Generic[InteractiveItemSelectorType], Cmd): sql_session: Session execute_selection: Callable[[Session, type, str], list[Any]]