refactor: Update exception handling parameters in context managers for consistency

This commit is contained in:
William Valentin
2025-08-08 17:44:50 -07:00
parent 9e107f6125
commit 87b59cd64a
6 changed files with 14 additions and 8 deletions

View File

@@ -152,7 +152,7 @@ class TestExportManager:
@patch('matplotlib.pyplot.draw')
@patch('matplotlib.pyplot.pause')
def test_save_graph_as_image_success(self, mock_pause, mock_draw, export_manager):
def test_save_graph_as_image_success(self, _mock_pause, _mock_draw, export_manager):
"""Test successful graph image saving."""
with tempfile.TemporaryDirectory() as temp_dir:
temp_path = Path(temp_dir)