From 8a453be4b97ab07444578abd842949abefda6d32 Mon Sep 17 00:00:00 2001 From: Kevin Veen-Birkenbach Date: Tue, 2 Dec 2025 19:36:01 +0100 Subject: [PATCH] Removed unnecessary warning --- module_utils/sounds.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/module_utils/sounds.py b/module_utils/sounds.py index 26a1fd64..a37b32e5 100644 --- a/module_utils/sounds.py +++ b/module_utils/sounds.py @@ -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: