]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-33987: Use ttk Label on IDLE statusbar (GH-22941)
authorMark Roseman <mark@markroseman.com>
Sat, 24 Oct 2020 23:32:34 +0000 (16:32 -0700)
committerGitHub <noreply@github.com>
Sat, 24 Oct 2020 23:32:34 +0000 (19:32 -0400)
Lib/idlelib/statusbar.py

index ae52a56368c82a66730ccc7d181afc36c5cb7f9b..755fafb0ac64388632b472d18b4cd0175e7df615 100644 (file)
@@ -1,5 +1,4 @@
-from tkinter import Label
-from tkinter.ttk import Frame
+from tkinter.ttk import Label, Frame
 
 
 class MultiStatusBar(Frame):