Skip to content

Commit

Permalink
Update logger.py (#411)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredbroad authored Feb 1, 2024
1 parent d8711a1 commit 8dd2c30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lean/components/util/logger.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def validate_option(input_value: Any):
return user_selected_value
else:
user_selected_values = []
user_inputs = prompt("To enter multiple options, separate them with comma.", type=str, default=default, show_default=True)
user_inputs = prompt("To enter multiple options, separate them with comma", type=str, default=default, show_default=True)
user_inputs = str(user_inputs).strip(",").split(",")
expected_outputs = len(user_inputs)
for user_input in user_inputs:
Expand Down

0 comments on commit 8dd2c30

Please sign in to comment.