Skip to content

Commit 603caa8

Browse files
author
Mateusz
committed
fix: resolve ruff B007 linting error in tests
Replaced unused loop variable 'i' with '_' to indicate intentional discard
1 parent 3b097ed commit 603caa8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/integration/test_automated_recovery_integration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ def track_event(event_name):
239239
connector._api_call_count["gemini-2.5-pro"] = 0
240240
connector.set_api_behavior("gemini-2.5-pro", [{"success": True}] * 5)
241241

242-
for i in range(3):
242+
for _ in range(3):
243243
result = await connector.chat_completions(
244244
request_data=mock_request,
245245
processed_messages=mock_request.messages,

0 commit comments

Comments
 (0)