From 95597887b29519682edb92d74ad9b7953ef195e0 Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Fri, 16 Jun 2023 13:59:59 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A8=20refactor(test=5Fdatabase.py):=20?= =?UTF-8?q?replace=20unused=20variable=20with=20underscore=20The=20variabl?= =?UTF-8?q?e=20'i'=20is=20not=20used=20in=20the=20for=20loop,=20so=20it=20?= =?UTF-8?q?has=20been=20replaced=20with=20an=20underscore=20to=20improve?= =?UTF-8?q?=20code=20readability.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/test_database.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_database.py b/tests/test_database.py index 1e449f373..87eed3d82 100644 --- a/tests/test_database.py +++ b/tests/test_database.py @@ -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()