Skip to content

Commit 3f90e0c

Browse files
committed
Make linter happy
1 parent 940fcee commit 3f90e0c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

arcade/sound.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@
1313
from arcade.resources import resolve
1414

1515
if os.environ.get("ARCADE_SOUND_BACKENDS"):
16-
pyglet.options['audio'] = tuple( # type: ignore
16+
pyglet.options["audio"] = tuple( # type: ignore
1717
v.strip() for v in os.environ["ARCADE_SOUND_BACKENDS"].split(",")
1818
)
1919
else:
20-
pyglet.options['audio'] = ("openal", "xaudio2", "directsound", "pulse", "silent") # type: ignore
20+
pyglet.options["audio"] = ("openal", "xaudio2", "directsound", "pulse", "silent") # type: ignore
2121

2222
import pyglet.media as media
2323

0 commit comments

Comments
 (0)