diff options
author | Alex Waygood <Alex.Waygood@Gmail.com> | 2023-09-24 15:07:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-24 15:07:23 +0100 |
commit | 19601efa364fe3c294d8010effe11e025cbc230e (patch) | |
tree | fe7b91cda272516296be6a0fb4fc31ce6c9037a8 /Lib/test/test_sqlite3/test_userfunctions.py | |
parent | 649768fb6781ba810df44017fee1975a11d65e2f (diff) | |
download | cpython-19601efa364fe3c294d8010effe11e025cbc230e.tar.gz cpython-19601efa364fe3c294d8010effe11e025cbc230e.zip |
gh-109653: Remove unused imports in the `Lib/` directory (#109803)
Diffstat (limited to 'Lib/test/test_sqlite3/test_userfunctions.py')
-rw-r--r-- | Lib/test/test_sqlite3/test_userfunctions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_sqlite3/test_userfunctions.py b/Lib/test/test_sqlite3/test_userfunctions.py index 09019498fd5..c6c3db159ad 100644 --- a/Lib/test/test_sqlite3/test_userfunctions.py +++ b/Lib/test/test_sqlite3/test_userfunctions.py @@ -29,7 +29,7 @@ from unittest.mock import Mock, patch from test.support import bigmemtest, gc_collect from .util import cx_limit, memory_database -from .util import with_tracebacks, check_tracebacks +from .util import with_tracebacks def func_returntext(): |