diff options
author | Victor Stinner <vstinner@python.org> | 2024-06-12 20:56:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-12 20:56:42 +0200 |
commit | 4c6d4f5cb33e48519922d635894eef356faddba2 (patch) | |
tree | 71f5b59450bb73eeddbe89348ecac15c3dc89258 /Lib/idlelib | |
parent | 4b5d3e0e721a952f4ac9d17bee331e6dfe543dcd (diff) | |
download | cpython-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.py | 2 |
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 |