From bf258e4bcf5afe22ba1c3dbf12552ec303905bc5 Mon Sep 17 00:00:00 2001 From: Walter Boring Date: Tue, 24 Mar 2026 12:15:37 -0400 Subject: [PATCH] chore(tests): fix unused variable linter warning in test_stats.py --- tests/threads/test_stats.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/threads/test_stats.py b/tests/threads/test_stats.py index 33226aa..d23fa3b 100644 --- a/tests/threads/test_stats.py +++ b/tests/threads/test_stats.py @@ -110,7 +110,7 @@ class TestAPRSDStatsStoreThread(unittest.TestCase): # Mock the collector and save methods with ( mock.patch('aprsd.stats.collector.Collector') as mock_collector_class, - mock.patch('aprsd.utils.objectstore.ObjectStoreMixin.save') as mock_save, + mock.patch('aprsd.utils.objectstore.ObjectStoreMixin.save'), mock.patch.object(thread, 'wait') as mock_wait, ): # Setup mock collector to return some stats