diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2019-01-02 22:04:06 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-02 22:04:06 -0500 |
commit | aff0adabf3ace62073076f4ce875ff568f2d3180 (patch) | |
tree | 157f0f7ad9d4f62e55cc99c000f6e82af30a0d01 /Lib/idlelib/config_key.py | |
parent | e9a044ec16989bd4b39763c0588c17200a925350 (diff) | |
download | cpython-git-aff0adabf3ace62073076f4ce875ff568f2d3180.tar.gz |
bpo-33987: IDLE - use ttk Frame for ttk widgets (GH-11395)
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 21e84a94c9..4478323fcc 100644 --- a/Lib/idlelib/config_key.py +++ b/Lib/idlelib/config_key.py @@ -2,7 +2,7 @@ Dialog for building Tkinter accelerator key bindings """ from tkinter import Toplevel, Listbox, Text, StringVar, TclError -from tkinter.ttk import Button, Checkbutton, Entry, Frame, Label, Scrollbar +from tkinter.ttk import Frame, Button, Checkbutton, Entry, Label, Scrollbar from tkinter import messagebox import string import sys |