Removed unnecessary warning

This commit is contained in:
2025-12-02 19:36:01 +01:00
parent f21bf5d459
commit 8a453be4b9

View File

@@ -1,5 +1,4 @@
import os
import warnings
class DummySound:
@staticmethod
@@ -16,7 +15,6 @@ class DummySound:
_IN_DOCKER = os.path.exists('/.dockerenv')
if _IN_DOCKER:
warnings.warn("Sound support disabled: running inside Docker.", RuntimeWarning)
Sound = DummySound
else:
try: