From 4d1f2ea5228b15a096df1d7337bc3f6723a4a452 Mon Sep 17 00:00:00 2001 From: Teknium Date: Mon, 23 Feb 2026 23:18:57 +0000 Subject: [PATCH] refactor: remove unused multi_select_cursor_brackets_style in prompt_checklist function - Eliminated the multi_select_cursor_brackets_style parameter from the prompt_checklist function, simplifying the code and improving clarity in the multi-select user interface. --- hermes_cli/setup.py | 1 - 1 file changed, 1 deletion(-) diff --git a/hermes_cli/setup.py b/hermes_cli/setup.py index 95154e15a..28a250ab8 100644 --- a/hermes_cli/setup.py +++ b/hermes_cli/setup.py @@ -174,7 +174,6 @@ def prompt_checklist(title: str, items: list, pre_selected: list = None) -> list multi_select=True, show_multi_select_hint=True, multi_select_cursor="[✓] ", - multi_select_cursor_brackets_style=("", ""), multi_select_select_on_accept=False, multi_select_empty_ok=True, preselected_entries=preselected if preselected else None,