From b916e27b2964b08b9792c476411626362dff2041 Mon Sep 17 00:00:00 2001 From: hermes Date: Mon, 23 Mar 2026 21:27:03 -0400 Subject: [PATCH] fix: ruff format error on test_autoresearch.py (#1256) --- tests/timmy/test_autoresearch.py | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/tests/timmy/test_autoresearch.py b/tests/timmy/test_autoresearch.py index ce9fd0e0..a4c9e853 100644 --- a/tests/timmy/test_autoresearch.py +++ b/tests/timmy/test_autoresearch.py @@ -12,15 +12,19 @@ class TestAppleSiliconHelpers: def test_is_apple_silicon_true_on_arm64_darwin(self): from timmy.autoresearch import is_apple_silicon - with patch("timmy.autoresearch.platform.system", return_value="Darwin"), \ - patch("timmy.autoresearch.platform.machine", return_value="arm64"): + with ( + patch("timmy.autoresearch.platform.system", return_value="Darwin"), + patch("timmy.autoresearch.platform.machine", return_value="arm64"), + ): assert is_apple_silicon() is True def test_is_apple_silicon_false_on_linux(self): from timmy.autoresearch import is_apple_silicon - with patch("timmy.autoresearch.platform.system", return_value="Linux"), \ - patch("timmy.autoresearch.platform.machine", return_value="x86_64"): + with ( + patch("timmy.autoresearch.platform.system", return_value="Linux"), + patch("timmy.autoresearch.platform.machine", return_value="x86_64"), + ): assert is_apple_silicon() is False def test_build_env_auto_resolves_mlx_on_apple_silicon(self): -- 2.43.0