fix: Remove unterminated triple-quoted string in user_input.py
This commit is contained in:
parent
3fb5a8855b
commit
a012872592
@ -27,7 +27,6 @@ def get_user_screener_selection() -> dict:
|
|||||||
"""Ask the user which screeners they want to run and whether to use defaults.
|
"""Ask the user which screeners they want to run and whether to use defaults.
|
||||||
Returns a dictionary of selected screeners with default/customization choices.
|
Returns a dictionary of selected screeners with default/customization choices.
|
||||||
"""
|
"""
|
||||||
"""
|
|
||||||
selected_screeners = {}
|
selected_screeners = {}
|
||||||
|
|
||||||
print("\nAvailable Screener Categories:")
|
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"
|
selected_screeners[category][screener] = float(custom_value) if custom_value else "default"
|
||||||
|
|
||||||
print(f"\n✅ Selected Screeners: {selected_screeners}\n") # ✅ DEBUG LOG
|
print(f"\n✅ Selected Screeners: {selected_screeners}\n") # ✅ DEBUG LOG
|
||||||
|
return selected_screeners
|
||||||
|
|
||||||
return selected_screeners
|
return selected_screeners
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user