summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErlend Egeberg Aasland <erlend.aasland@protonmail.com>2022-07-20 18:07:47 +0200
committerGitHub <noreply@github.com>2022-07-20 18:07:47 +0200
commit9d09e7b0263c248659f3b4a2c597fca9ac4f8f91 (patch)
tree0f262f6d0e0d60c6e57b0eed3ba914e6b9836184
parented4441567ec480d1e4d8f982bd1f7347e4d03c42 (diff)
downloadcpython-git-9d09e7b0263c248659f3b4a2c597fca9ac4f8f91.tar.gz
gh-94998: Remove redundant condition in test_sqlite3/__main__.py (#95052)
-rw-r--r--Lib/test/test_sqlite3/__main__.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/test/test_sqlite3/__main__.py b/Lib/test/test_sqlite3/__main__.py
index 51eddc3c2f..ca6a8347fb 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()