Fixed audio module

This commit is contained in:
2021-06-04 14:08:20 -04:00
parent c0f390ebdd
commit 270143e048

View File

@ -17,5 +17,5 @@ def play_sound(file):
else:
cmd = "aplay -N " + sound_args + " " + file + " &"
# print(cmd)
os.system(cmd)
system(cmd)