From afbbdd18b6d192979fa63ec448b92a21fe3c7a90 Mon Sep 17 00:00:00 2001 From: Jon Dufresne Date: Tue, 12 Mar 2019 19:46:23 -0700 Subject: [PATCH] Remove unused variable The variable i is immediately overwritten by the next line. --- tests/test_connection.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/test_connection.py b/tests/test_connection.py index ea74e1e4..e762f0f0 100755 --- a/tests/test_connection.py +++ b/tests/test_connection.py @@ -282,7 +282,6 @@ class ConnectionTests(ConnectingTestCase): cur = conn.cursor() t1 = threading.Thread(target=committer) t1.start() - i = 1 for i in range(1000): cur.execute("select %s;", (i,)) conn.commit()