diff options
author | Victor Stinner <vstinner@python.org> | 2024-06-12 18:56:42 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-12 18:56:42 (GMT) |
commit | 4c6d4f5cb33e48519922d635894eef356faddba2 (patch) | |
tree | 71f5b59450bb73eeddbe89348ecac15c3dc89258 /Lib/dbm | |
parent | 4b5d3e0e721a952f4ac9d17bee331e6dfe543dcd (diff) | |
download | cpython-4c6d4f5cb33e48519922d635894eef356faddba2.zip cpython-4c6d4f5cb33e48519922d635894eef356faddba2.tar.gz cpython-4c6d4f5cb33e48519922d635894eef356faddba2.tar.bz2 |
gh-120417: Remove unused imports in the stdlib (#120420)
Diffstat (limited to 'Lib/dbm')
-rw-r--r-- | Lib/dbm/sqlite3.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/dbm/sqlite3.py b/Lib/dbm/sqlite3.py index 74c9d9b..7e0ae2a2 100644 --- a/Lib/dbm/sqlite3.py +++ b/Lib/dbm/sqlite3.py @@ -1,6 +1,5 @@ import os import sqlite3 -import sys from pathlib import Path from contextlib import suppress, closing from collections.abc import MutableMapping |