Skip to content

Commit

Permalink
fix : minor bug in play function windows section fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
sepandhaghighi committed Jan 16, 2024
1 parent 2e83244 commit bfc4d30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nava/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ def play(sound_path, is_async=True):
try:
sys_platform = sys.platform
if sys_platform == "win32":
__play_win(sound_path, is_async)
return __play_win(sound_path, is_async)
elif sys_platform == "darwin":
return __play_mac(sound_path, is_async)
else:
Expand Down

0 comments on commit bfc4d30

Please sign in to comment.