From e33efd28ef85e3a360e97c7c55d4e11b5050065e Mon Sep 17 00:00:00 2001 From: Marcel van der Veldt Date: Sat, 26 Apr 2025 02:19:00 +0200 Subject: [PATCH] Fix: lint issue after ruff bump --- music_assistant/controllers/streams.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/music_assistant/controllers/streams.py b/music_assistant/controllers/streams.py index 229cd472..3139e0b9 100644 --- a/music_assistant/controllers/streams.py +++ b/music_assistant/controllers/streams.py @@ -53,9 +53,8 @@ from music_assistant.constants import ( SILENCE_FILE, VERBOSE_LOG_LEVEL, ) -from music_assistant.helpers.audio import CACHE_FILES_IN_USE -from music_assistant.helpers.audio import LOGGER as AUDIO_LOGGER from music_assistant.helpers.audio import ( + CACHE_FILES_IN_USE, crossfade_pcm_parts, get_chunksize, get_media_stream, @@ -63,6 +62,7 @@ from music_assistant.helpers.audio import ( get_silence, get_stream_details, ) +from music_assistant.helpers.audio import LOGGER as AUDIO_LOGGER from music_assistant.helpers.ffmpeg import LOGGER as FFMPEG_LOGGER from music_assistant.helpers.ffmpeg import check_ffmpeg_version, get_ffmpeg_stream from music_assistant.helpers.util import ( -- 2.34.1