aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/idlelib
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2024-06-12 20:56:42 +0200
committerGitHub <noreply@github.com>2024-06-12 20:56:42 +0200
commit4c6d4f5cb33e48519922d635894eef356faddba2 (patch)
tree71f5b59450bb73eeddbe89348ecac15c3dc89258 /Lib/idlelib
parent4b5d3e0e721a952f4ac9d17bee331e6dfe543dcd (diff)
downloadcpython-4c6d4f5cb33e48519922d635894eef356faddba2.tar.gz
cpython-4c6d4f5cb33e48519922d635894eef356faddba2.zip
gh-120417: Remove unused imports in the stdlib (#120420)
Diffstat (limited to 'Lib/idlelib')
-rw-r--r--Lib/idlelib/grep.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/grep.py b/Lib/idlelib/grep.py
index ef14349960b..42048ff2395 100644
--- a/Lib/idlelib/grep.py
+++ b/Lib/idlelib/grep.py
@@ -190,7 +190,7 @@ class GrepDialog(SearchDialogBase):
def _grep_dialog(parent): # htest #
- from tkinter import Toplevel, Text, SEL, END
+ from tkinter import Toplevel, Text, SEL
from tkinter.ttk import Frame, Button
from idlelib.pyshell import PyShellFileList