From 577c2469f796063e2f04c133d0f17776b2656c22 Mon Sep 17 00:00:00 2001 From: Daniel Maksymilian Syrnicki Date: Tue, 21 Apr 2026 11:56:52 +0200 Subject: [PATCH] style(tests): reflow OPTIONAL_PATH_MANIFEST to match ruff format MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes the lint failure on the 26.10-alpha commit — ruff format wanted the single-item settings list on one line rather than spread over three. Pure formatting, no behaviour change. Co-Authored-By: Claude Opus 4.7 (1M context) --- tests/test_installer.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tests/test_installer.py b/tests/test_installer.py index a0c14b7..5a2eecb 100644 --- a/tests/test_installer.py +++ b/tests/test_installer.py @@ -287,9 +287,7 @@ PATH_MANIFEST = dict( OPTIONAL_PATH_MANIFEST = dict( VALID_MANIFEST, name="jellyfin", - settings=[ - {"name": "OPTIONAL_PATH", "label": "Optional", "type": "path", "required": False} - ], + settings=[{"name": "OPTIONAL_PATH", "label": "Optional", "type": "path", "required": False}], )