From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Wed, 20 Jul 2022 17:01:58 +0000 (-0700) Subject: gh-94998: Remove redundant condition in test_sqlite3/__main__.py (GH-95052) X-Git-Tag: v3.11.0b5~38 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2ac10964239f1677b0da5fc40794da1f40c779c2;p=thirdparty%2FPython%2Fcpython.git gh-94998: Remove redundant condition in test_sqlite3/__main__.py (GH-95052) (cherry picked from commit 9d09e7b0263c248659f3b4a2c597fca9ac4f8f91) Co-authored-by: Erlend Egeberg Aasland --- 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()