diff options
author | Erlend Egeberg Aasland <erlend.aasland@protonmail.com> | 2022-07-20 16:07:47 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-20 16:07:47 (GMT) |
commit | 9d09e7b0263c248659f3b4a2c597fca9ac4f8f91 (patch) | |
tree | 0f262f6d0e0d60c6e57b0eed3ba914e6b9836184 /Lib | |
parent | ed4441567ec480d1e4d8f982bd1f7347e4d03c42 (diff) | |
download | cpython-9d09e7b0263c248659f3b4a2c597fca9ac4f8f91.zip cpython-9d09e7b0263c248659f3b4a2c597fca9ac4f8f91.tar.gz cpython-9d09e7b0263c248659f3b4a2c597fca9ac4f8f91.tar.bz2 |
gh-94998: Remove redundant condition in test_sqlite3/__main__.py (#95052)
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_sqlite3/__main__.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/test/test_sqlite3/__main__.py b/Lib/test/test_sqlite3/__main__.py index 51eddc3..ca6a834 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() |