diff options
author | Victor Stinner <vstinner@python.org> | 2020-04-30 03:28:51 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-29 21:28:51 -0400 |
commit | 6900f16d2207ca4fc252fa9d778ca0b13a3c95e0 (patch) | |
tree | f7db2cabf84a3f1dab588153ece12393bfa6dbee /Lib/idlelib/config_key.py | |
parent | 138a9b9c2a394f30f222c23391f9515a7df9d809 (diff) | |
download | cpython-git-6900f16d2207ca4fc252fa9d778ca0b13a3c95e0.tar.gz |
bpo-40443: Remove unused imports in idlelib (GH-19801)
Diffstat (limited to 'Lib/idlelib/config_key.py')
-rw-r--r-- | Lib/idlelib/config_key.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/config_key.py b/Lib/idlelib/config_key.py index 4478323fcc..7510aa9f3d 100644 --- a/Lib/idlelib/config_key.py +++ b/Lib/idlelib/config_key.py @@ -1,7 +1,7 @@ """ Dialog for building Tkinter accelerator key bindings """ -from tkinter import Toplevel, Listbox, Text, StringVar, TclError +from tkinter import Toplevel, Listbox, StringVar, TclError from tkinter.ttk import Frame, Button, Checkbutton, Entry, Label, Scrollbar from tkinter import messagebox import string |