From: Erlend Egeberg Aasland Date: Wed, 20 Jul 2022 16:07:47 +0000 (+0200) Subject: gh-94998: Remove redundant condition in test_sqlite3/__main__.py (#95052) X-Git-Tag: v3.12.0a1~905 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9d09e7b0263c248659f3b4a2c597fca9ac4f8f91;p=thirdparty%2FPython%2Fcpython.git gh-94998: Remove redundant condition in test_sqlite3/__main__.py (#95052) --- diff --git a/Lib/test/test_sqlite3/__main__.py b/Lib/test/test_sqlite3/__main__.py index 51eddc3c2fde..ca6a8347fbd2 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()