0
0
mirror of https://github.com/python/cpython.git synced 2024-12-01 11:15:56 +01:00

Helpwin.__init__(): Removed an unused local variable (via import)

reported by PyChecker.
This commit is contained in:
Barry Warsaw 2001-04-18 03:50:07 +00:00
parent cc8a60cdf6
commit 6a5522677a

View File

@ -203,7 +203,7 @@ Unrecognized color file type in file:
class Helpwin:
def __init__(self, master, quitfunc):
from Main import __version__, docstring
from Main import docstring
self.__root = root = Toplevel(master, class_='Pynche')
root.protocol('WM_DELETE_WINDOW', self.__withdraw)
root.title('Pynche Help Window')