diff options
author | Nikita Sobolev <mail@sobolevn.me> | 2024-05-07 12:43:18 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-07 12:43:18 (GMT) |
commit | ad3d877a126bc892d1c598cf1357a2c39fd466c7 (patch) | |
tree | 8b050389ca34046f665c5b397920c51fbeb940a6 /Lib/_pyrepl/reader.py | |
parent | 65f5e586a1239ed1a66d8284773d7b02ce40e480 (diff) | |
download | cpython-ad3d877a126bc892d1c598cf1357a2c39fd466c7.zip cpython-ad3d877a126bc892d1c598cf1357a2c39fd466c7.tar.gz cpython-ad3d877a126bc892d1c598cf1357a2c39fd466c7.tar.bz2 |
Remove several unused imports in `_pyrepl` (#118668)
Diffstat (limited to 'Lib/_pyrepl/reader.py')
-rw-r--r-- | Lib/_pyrepl/reader.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/_pyrepl/reader.py b/Lib/_pyrepl/reader.py index a7ef988..071dfe5 100644 --- a/Lib/_pyrepl/reader.py +++ b/Lib/_pyrepl/reader.py @@ -23,7 +23,6 @@ from __future__ import annotations from contextlib import contextmanager from dataclasses import dataclass, field, fields -import re import unicodedata from _colorize import can_colorize, ANSIColors # type: ignore[import-not-found] |