Skip to content
This repository was archived by the owner on Feb 20, 2026. It is now read-only.

Commit 3caa90e

Browse files
committed
Fix cli_ui.select_choices() infinite loop
Whitespace-significant syntax is not always a good idea it seams ...
1 parent 1f5615e commit 3caa90e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cli_ui/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -594,7 +594,7 @@ def select_choices(
594594
info("Please enter valid selection number(s)")
595595
continue
596596

597-
return res
597+
return res
598598

599599

600600
def ask_yes_no(*question: Token, default: bool = False) -> bool:

0 commit comments

Comments
 (0)