diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-04-24 21:12:32 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-04-24 21:12:32 (GMT) |
commit | ccd047ea4b92f09a84b67e69deb82ce42e510c4c (patch) | |
tree | 89663a3917f136919b9b491c22ee76c16afd0b83 /Lib/idlelib/help.py | |
parent | a6f26c1d3495670c02c2ceb1e38ada0d468579f7 (diff) | |
download | cpython-ccd047ea4b92f09a84b67e69deb82ce42e510c4c.zip cpython-ccd047ea4b92f09a84b67e69deb82ce42e510c4c.tar.gz cpython-ccd047ea4b92f09a84b67e69deb82ce42e510c4c.tar.bz2 |
Removed unused imports.
Diffstat (limited to 'Lib/idlelib/help.py')
-rw-r--r-- | Lib/idlelib/help.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/idlelib/help.py b/Lib/idlelib/help.py index d0c59c5..4cb8c76 100644 --- a/Lib/idlelib/help.py +++ b/Lib/idlelib/help.py @@ -25,8 +25,8 @@ copy_strip - Copy idle.html to help.html, rstripping each line. show_idlehelp - Create HelpWindow. Called in EditorWindow.help_dialog. """ from html.parser import HTMLParser -from os.path import abspath, dirname, isdir, isfile, join -from tkinter import Tk, Toplevel, Frame, Text, Scrollbar, Menu, Menubutton +from os.path import abspath, dirname, isfile, join +from tkinter import Toplevel, Frame, Text, Scrollbar, Menu, Menubutton from tkinter import font as tkfont from idlelib.configHandler import idleConf |