]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-33987: Use ttk Label on IDLE statusbar (GH-22941)
authorMiss Skeleton (bot) <31488909+miss-islington@users.noreply.github.com>
Sat, 24 Oct 2020 23:51:03 +0000 (16:51 -0700)
committerGitHub <noreply@github.com>
Sat, 24 Oct 2020 23:51:03 +0000 (16:51 -0700)
(cherry picked from commit e53e54425d9b7b9b7b082817da104d60bb25e3a2)

Co-authored-by: Mark Roseman <mark@markroseman.com>
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):