Skip to content

Commit 1d4dba0

Browse files
committed
chore(lint): run flake8 fix
1 parent ab4df27 commit 1d4dba0

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

tests/test_chunked_performance.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,6 @@ class TestProgressCallbackPerformance:
353353
@pytest.mark.performance
354354
def test_progress_callback_overhead(self, turbo_client, test_data_medium):
355355
"""Measure overhead of progress callbacks"""
356-
results = []
357356

358357
# Without callback
359358
start = time.perf_counter()
@@ -382,8 +381,8 @@ def on_progress(processed, total):
382381
overhead_pct = ((time_with_callback - time_no_callback) / time_no_callback) * 100
383382

384383
print(f"\n{'=' * 50}")
385-
print(f" Progress Callback Overhead Test")
386-
print(f"{'=' * 50}")
384+
print("Progress Callback Overhead Test")
385+
print("=" * 50)
387386
print(f"Without callback: {time_no_callback:.2f}s")
388387
print(f"With callback: {time_with_callback:.2f}s")
389388
print(f"Overhead: {overhead_pct:+.1f}%")

0 commit comments

Comments
 (0)