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/configdialog.py | |
parent | 138a9b9c2a394f30f222c23391f9515a7df9d809 (diff) | |
download | cpython-git-6900f16d2207ca4fc252fa9d778ca0b13a3c95e0.tar.gz |
bpo-40443: Remove unused imports in idlelib (GH-19801)
Diffstat (limited to 'Lib/idlelib/configdialog.py')
-rw-r--r-- | Lib/idlelib/configdialog.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/configdialog.py b/Lib/idlelib/configdialog.py index 9d5c2cde04..82596498d3 100644 --- a/Lib/idlelib/configdialog.py +++ b/Lib/idlelib/configdialog.py @@ -11,7 +11,7 @@ Refer to comments in EditorWindow autoindent code for details. """ import re -from tkinter import (Toplevel, Listbox, Text, Scale, Canvas, +from tkinter import (Toplevel, Listbox, Scale, Canvas, StringVar, BooleanVar, IntVar, TRUE, FALSE, TOP, BOTTOM, RIGHT, LEFT, SOLID, GROOVE, NONE, BOTH, X, Y, W, E, EW, NS, NSEW, NW, |