From 4556e2b6566d4e994cc9286a8e5c69c6b5184efd Mon Sep 17 00:00:00 2001 From: Marvin Schenkel Date: Mon, 19 Jan 2026 16:28:31 +0100 Subject: [PATCH] Fix linter --- music_assistant/providers/orf_radiothek/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/music_assistant/providers/orf_radiothek/__init__.py b/music_assistant/providers/orf_radiothek/__init__.py index b4a37bb2..1f75f33d 100644 --- a/music_assistant/providers/orf_radiothek/__init__.py +++ b/music_assistant/providers/orf_radiothek/__init__.py @@ -118,7 +118,8 @@ async def get_config_entries( values: dict[str, ConfigValueType] | None = None, ) -> tuple[ConfigEntry, ...]: """Return provider configuration entries.""" - values = values or {} # ruff: noqa: ARG001 + # ruff: noqa: ARG001 + values = values or {} return ( ConfigEntry( -- 2.34.1