From 7100fd881eb84359120e778fa53a3b8558e7f9da Mon Sep 17 00:00:00 2001 From: Brian Krabach Date: Tue, 31 Mar 2026 02:13:10 -0700 Subject: [PATCH] style: apply ruff formatting to test_frontend_css.py (wrap long assertion) --- muxplex/tests/test_frontend_css.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/muxplex/tests/test_frontend_css.py b/muxplex/tests/test_frontend_css.py index 9990b42..4a24bbf 100644 --- a/muxplex/tests/test_frontend_css.py +++ b/muxplex/tests/test_frontend_css.py @@ -1697,4 +1697,6 @@ def test_css_remote_instances_classes() -> None: ".settings-remote-remove", ".settings-input", ): - assert cls in css, f"Missing CSS selector '{cls}' — required for Remote Instances UI" + assert cls in css, ( + f"Missing CSS selector '{cls}' — required for Remote Instances UI" + )