From a9a1396e6e5f9a5b03a3c5fd7a29418140e67809 Mon Sep 17 00:00:00 2001 From: Simone Scarduzio Date: Sat, 11 Oct 2025 14:17:49 +0200 Subject: [PATCH] style: Format test_stats_algorithm.py with ruff --- tests/unit/test_stats_algorithm.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tests/unit/test_stats_algorithm.py b/tests/unit/test_stats_algorithm.py index 3a76e5c..4988367 100644 --- a/tests/unit/test_stats_algorithm.py +++ b/tests/unit/test_stats_algorithm.py @@ -329,9 +329,7 @@ class TestBucketStatsAlgorithm: mock_client.service.storage.head.side_effect = mock_head # Execute with mocked ThreadPoolExecutor - with patch( - "concurrent.futures.ThreadPoolExecutor" - ) as mock_executor: + with patch("concurrent.futures.ThreadPoolExecutor") as mock_executor: mock_pool = MagicMock() mock_executor.return_value.__enter__.return_value = mock_pool