From 8713feb9e59b5f47bf8bf6b640eb4af79febc614 Mon Sep 17 00:00:00 2001 From: Paul Craven Date: Fri, 10 Jan 2025 08:25:00 -0600 Subject: [PATCH] Black format --- arcade/sound.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arcade/sound.py b/arcade/sound.py index 7c7359a12..3cf687e81 100644 --- a/arcade/sound.py +++ b/arcade/sound.py @@ -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