diff options
author | Alex Waygood <Alex.Waygood@Gmail.com> | 2023-09-24 14:07:23 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-24 14:07:23 (GMT) |
commit | 19601efa364fe3c294d8010effe11e025cbc230e (patch) | |
tree | fe7b91cda272516296be6a0fb4fc31ce6c9037a8 /Lib/asyncio | |
parent | 649768fb6781ba810df44017fee1975a11d65e2f (diff) | |
download | cpython-19601efa364fe3c294d8010effe11e025cbc230e.zip cpython-19601efa364fe3c294d8010effe11e025cbc230e.tar.gz cpython-19601efa364fe3c294d8010effe11e025cbc230e.tar.bz2 |
gh-109653: Remove unused imports in the `Lib/` directory (#109803)
Diffstat (limited to 'Lib/asyncio')
-rw-r--r-- | Lib/asyncio/tasks.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/asyncio/tasks.py b/Lib/asyncio/tasks.py index edc64fd..21a1b24 100644 --- a/Lib/asyncio/tasks.py +++ b/Lib/asyncio/tasks.py @@ -17,7 +17,6 @@ import inspect import itertools import math import types -import warnings import weakref from types import GenericAlias |