🔨 refactor(test_database.py): replace unused variable with underscore
The variable 'i' is not used in the for loop, so it has been replaced with an underscore to improve code readability.
This commit is contained in:
parent
5568db9f1b
commit
95597887b2
1 changed files with 1 additions and 1 deletions
|
|
@ -286,7 +286,7 @@ def test_stress_create_flow(client: TestClient, json_flow: str):
|
|||
assert response.status_code == 200
|
||||
|
||||
threads = []
|
||||
for i in range(100):
|
||||
for _ in range(100):
|
||||
t = threading.Thread(target=create_flow)
|
||||
threads.append(t)
|
||||
t.start()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue