From 9d09e7b0263c248659f3b4a2c597fca9ac4f8f91 Mon Sep 17 00:00:00 2001 From: Erlend Egeberg Aasland <erlend.aasland@protonmail.com> Date: Wed, 20 Jul 2022 18:07:47 +0200 Subject: [PATCH] gh-94998: Remove redundant condition in test_sqlite3/__main__.py (#95052) --- Lib/test/test_sqlite3/__main__.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Lib/test/test_sqlite3/__main__.py b/Lib/test/test_sqlite3/__main__.py index 51eddc3c2fd..ca6a8347fbd 100644 --- a/Lib/test/test_sqlite3/__main__.py +++ b/Lib/test/test_sqlite3/__main__.py @@ -1,5 +1,4 @@ from test.test_sqlite3 import load_tests # Needed for the "load tests" protocol. import unittest -if __name__ == "__main__": - unittest.main() +unittest.main() -- GitLab