aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/test/support/interpreters/channels.py
diff options
context:
space:
mode:
authorHugo van Kemenade <1324225+hugovk@users.noreply.github.com>2025-05-25 23:09:02 +0300
committerGitHub <noreply@github.com>2025-05-25 20:09:02 +0000
commit328a778db8cc6ecadf0964a8e6a1834078b2d0d3 (patch)
tree3ac29c902a909f31fd9d7c475c235a634bb2f948 /Lib/test/support/interpreters/channels.py
parent24a47155d2172966fab7d56f2bf9181056fba8d0 (diff)
downloadcpython-328a778db8cc6ecadf0964a8e6a1834078b2d0d3.tar.gz
cpython-328a778db8cc6ecadf0964a8e6a1834078b2d0d3.zip
gh-134357: Remove unused imports in tests (#134340)
Diffstat (limited to 'Lib/test/support/interpreters/channels.py')
-rw-r--r--Lib/test/support/interpreters/channels.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/support/interpreters/channels.py b/Lib/test/support/interpreters/channels.py
index 7a2bd7d63f8..b25a17b1aab 100644
--- a/Lib/test/support/interpreters/channels.py
+++ b/Lib/test/support/interpreters/channels.py
@@ -6,8 +6,8 @@ from . import _crossinterp
# aliases:
from _interpchannels import (
- ChannelError, ChannelNotFoundError, ChannelClosedError,
- ChannelEmptyError, ChannelNotEmptyError,
+ ChannelError, ChannelNotFoundError, ChannelClosedError, # noqa: F401
+ ChannelEmptyError, ChannelNotEmptyError, # noqa: F401
)
from ._crossinterp import (
UNBOUND_ERROR, UNBOUND_REMOVE,