diff options
author | Barry Warsaw <barry@python.org> | 2001-04-18 03:50:07 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2001-04-18 03:50:07 (GMT) |
commit | 6a5522677a5325b333ef687e396f2b66ed52efa6 (patch) | |
tree | dace4748d0fd40e3b6caeb08769532d7a94c0658 /Tools/pynche | |
parent | cc8a60cdf61307eeab7ecd7bb8795728373efdfe (diff) | |
download | cpython-6a5522677a5325b333ef687e396f2b66ed52efa6.zip cpython-6a5522677a5325b333ef687e396f2b66ed52efa6.tar.gz cpython-6a5522677a5325b333ef687e396f2b66ed52efa6.tar.bz2 |
Helpwin.__init__(): Removed an unused local variable (via import)
reported by PyChecker.
Diffstat (limited to 'Tools/pynche')
-rw-r--r-- | Tools/pynche/PyncheWidget.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/pynche/PyncheWidget.py b/Tools/pynche/PyncheWidget.py index 4cddff1..a7a0666 100644 --- a/Tools/pynche/PyncheWidget.py +++ b/Tools/pynche/PyncheWidget.py @@ -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') |