diff --git a/ucsinfer/recommend.py b/ucsinfer/recommend.py index 94ca324..f74d7f8 100644 --- a/ucsinfer/recommend.py +++ b/ucsinfer/recommend.py @@ -31,7 +31,7 @@ def print_recommendation(path: str | None, text: str, ctx: InferenceContext, print(f"- {i}: {r} ({cat}-{subcat})") if interactive_rename and path is not None: - response = input("(n#), t [text], c [cat], b [search], ?, q > ") + response = input("(n#), t, c, b, ?, q > ") if m := match(r'^([0-9]+)', response): selection = int(m.group(1))