diff options
author | Miss Skeleton (bot) <31488909+miss-islington@users.noreply.github.com> | 2020-10-24 23:53:34 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-24 23:53:34 (GMT) |
commit | 4efd2defb899c5c45334814234c842f8f513879e (patch) | |
tree | cca3a76113cf3f6392eb1c558883810134bd1e5f | |
parent | c17f63fae57dc02e78bd6931b8fb6c6c2f9d4d81 (diff) | |
download | cpython-4efd2defb899c5c45334814234c842f8f513879e.zip cpython-4efd2defb899c5c45334814234c842f8f513879e.tar.gz cpython-4efd2defb899c5c45334814234c842f8f513879e.tar.bz2 |
bpo-33987: Use ttk Label on IDLE statusbar (GH-22941)
(cherry picked from commit e53e54425d9b7b9b7b082817da104d60bb25e3a2)
Co-authored-by: Mark Roseman <mark@markroseman.com>
-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): |