diff options
author | Mark Roseman <mark@markroseman.com> | 2020-10-24 23:32:34 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-24 23:32:34 (GMT) |
commit | e53e54425d9b7b9b7b082817da104d60bb25e3a2 (patch) | |
tree | e80a3804429484ebc228ab90c939a27d40e4c4da /Lib | |
parent | be3c3a0e468237430ad7d19a33c60d306199a7f2 (diff) | |
download | cpython-e53e54425d9b7b9b7b082817da104d60bb25e3a2.zip cpython-e53e54425d9b7b9b7b082817da104d60bb25e3a2.tar.gz cpython-e53e54425d9b7b9b7b082817da104d60bb25e3a2.tar.bz2 |
bpo-33987: Use ttk Label on IDLE statusbar (GH-22941)
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/idlelib/statusbar.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/idlelib/statusbar.py b/Lib/idlelib/statusbar.py index ae52a56..755fafb 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): |