summaryrefslogtreecommitdiff
path: root/Lib/idlelib/autocomplete_w.py
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2019-01-02 22:04:06 -0500
committerGitHub <noreply@github.com>2019-01-02 22:04:06 -0500
commitaff0adabf3ace62073076f4ce875ff568f2d3180 (patch)
tree157f0f7ad9d4f62e55cc99c000f6e82af30a0d01 /Lib/idlelib/autocomplete_w.py
parente9a044ec16989bd4b39763c0588c17200a925350 (diff)
downloadcpython-git-aff0adabf3ace62073076f4ce875ff568f2d3180.tar.gz
bpo-33987: IDLE - use ttk Frame for ttk widgets (GH-11395)
Diffstat (limited to 'Lib/idlelib/autocomplete_w.py')
-rw-r--r--Lib/idlelib/autocomplete_w.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/autocomplete_w.py b/Lib/idlelib/autocomplete_w.py
index 9e0d336523..7994bc0db1 100644
--- a/Lib/idlelib/autocomplete_w.py
+++ b/Lib/idlelib/autocomplete_w.py
@@ -4,7 +4,7 @@ An auto-completion window for IDLE, used by the autocomplete extension
import platform
from tkinter import *
-from tkinter.ttk import Scrollbar
+from tkinter.ttk import Frame, Scrollbar
from idlelib.autocomplete import COMPLETE_FILES, COMPLETE_ATTRIBUTES
from idlelib.multicall import MC_SHIFT