diff options
author | Barry Warsaw <barry@python.org> | 2001-04-18 03:52:54 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2001-04-18 03:52:54 (GMT) |
commit | 31c2dae39c8d59a874a77bd8c5acee2d918efd38 (patch) | |
tree | b6224b1de640bb4bc0d124f7b05700826adc4557 /Tools/pynche | |
parent | 741eae0b3129c123ed4319d8d9e5b877b09aefa8 (diff) | |
download | cpython-31c2dae39c8d59a874a77bd8c5acee2d918efd38.zip cpython-31c2dae39c8d59a874a77bd8c5acee2d918efd38.tar.gz cpython-31c2dae39c8d59a874a77bd8c5acee2d918efd38.tar.bz2 |
__init__(): Removed unused local variable reported by PyChecker.
Diffstat (limited to 'Tools/pynche')
-rw-r--r-- | Tools/pynche/TextViewer.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Tools/pynche/TextViewer.py b/Tools/pynche/TextViewer.py index d971eca..30a87f7 100644 --- a/Tools/pynche/TextViewer.py +++ b/Tools/pynche/TextViewer.py @@ -101,7 +101,6 @@ and choosing a color.''')) # # radios self.__radios = [] - val = 0 for col in (1, 2): for row in (2, 3, 4): # there is no insertforeground option |