From a012872592691dfc2738057222af585d7951fbcc Mon Sep 17 00:00:00 2001 From: "Bobby (aider)" Date: Sat, 8 Feb 2025 07:50:32 -0800 Subject: [PATCH] fix: Remove unterminated triple-quoted string in user_input.py --- src/screener/user_input.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/screener/user_input.py b/src/screener/user_input.py index 898560d..ab4759b 100644 --- a/src/screener/user_input.py +++ b/src/screener/user_input.py @@ -27,7 +27,6 @@ def get_user_screener_selection() -> dict: """Ask the user which screeners they want to run and whether to use defaults. Returns a dictionary of selected screeners with default/customization choices. """ - """ selected_screeners = {} print("\nAvailable Screener Categories:") @@ -55,6 +54,7 @@ def get_user_screener_selection() -> dict: selected_screeners[category][screener] = float(custom_value) if custom_value else "default" print(f"\nāœ… Selected Screeners: {selected_screeners}\n") # āœ… DEBUG LOG + return selected_screeners return selected_screeners