From 8ec0a08f57733c0761f144ea103b53e6863eddec Mon Sep 17 00:00:00 2001 From: Mark Roseman Date: Sat, 24 Oct 2020 07:52:51 -0700 Subject: [PATCH] bpo-33987: switch labels on IDLE statusbar to ttk so matches enclosing frame --- Lib/idlelib/statusbar.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Lib/idlelib/statusbar.py b/Lib/idlelib/statusbar.py index ae52a56368c82a..755fafb0ac6438 100644 --- a/Lib/idlelib/statusbar.py +++ b/Lib/idlelib/statusbar.py @@ -1,5 +1,4 @@ -from tkinter import Label -from tkinter.ttk import Frame +from tkinter.ttk import Label, Frame class MultiStatusBar(Frame):