Skip to content

Commit

Permalink
Make linter happy
Browse files Browse the repository at this point in the history
  • Loading branch information
pushfoo committed Jan 10, 2025
1 parent 940fcee commit 3f90e0c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arcade/sound.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@
from arcade.resources import resolve

if os.environ.get("ARCADE_SOUND_BACKENDS"):
pyglet.options['audio'] = tuple( # type: ignore
pyglet.options["audio"] = tuple( # type: ignore
v.strip() for v in os.environ["ARCADE_SOUND_BACKENDS"].split(",")
)
else:
pyglet.options['audio'] = ("openal", "xaudio2", "directsound", "pulse", "silent") # type: ignore
pyglet.options["audio"] = ("openal", "xaudio2", "directsound", "pulse", "silent") # type: ignore

import pyglet.media as media

Expand Down

0 comments on commit 3f90e0c

Please sign in to comment.