🔨 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:
Gabriel Luiz Freitas Almeida 2023-06-16 13:59:59 -03:00
commit 95597887b2

View file

@ -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()