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
+1 -1
View File
@@ -245,7 +245,7 @@ class OperationTimer:
self.start_time = time.time()
return self
def __exit__(self, exc_type, exc_val, exc_tb):
def __exit__(self, _exc_type, _exc_val, _exc_tb):
"""End timing and check for performance issues."""
import time