]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-94998: Remove redundant condition in test_sqlite3/__main__.py (#95052)
authorErlend Egeberg Aasland <erlend.aasland@protonmail.com>
Wed, 20 Jul 2022 16:07:47 +0000 (18:07 +0200)
committerGitHub <noreply@github.com>
Wed, 20 Jul 2022 16:07:47 +0000 (18:07 +0200)
Lib/test/test_sqlite3/__main__.py

index 51eddc3c2fde02d01d49c88904d584b92459d559..ca6a8347fbd231154f8b7e4a8302c3718f4de84a 100644 (file)
@@ -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()