Skip to content

Commit 7405197

Browse files
committed
Formatting for sound
1 parent 1a11242 commit 7405197

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

arcade/sound.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@
1717

1818
if os.environ.get("ARCADE_SOUND_BACKENDS"):
1919
pyglet.options.audio = tuple( # type: ignore
20-
v.strip() for v in os.environ["ARCADE_SOUND_BACKENDS"].split(","))
20+
v.strip() for v in os.environ["ARCADE_SOUND_BACKENDS"].split(",")
21+
)
2122
else:
22-
pyglet.options.audio = ( # type: ignore
23-
"openal", "xaudio2", "directsound", "pulse", "silent")
23+
pyglet.options.audio = ("openal", "xaudio2", "directsound", "pulse", "silent") # type: ignore
2424

2525
import pyglet.media as media
2626

0 commit comments

Comments
 (0)