Skip to content

Commit

Permalink
fix: 🐛 fails to play a single result
Browse files Browse the repository at this point in the history
  • Loading branch information
deep5050 committed Dec 16, 2023
1 parent f036fbe commit eaed09d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion radioactive/utilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@ def handle_user_choice_from_search_result(handler, response):
print()
sys.exit(0)

if user_input == ("y" or "Y"):
if user_input in ["y","Y"]:
log.debug("Playing UUID from single response")
global_current_station_info = response[0]

Expand Down

0 comments on commit eaed09d

Please sign in to comment.