From 31ac518dd76711b6982b3935943ea306e5838708 Mon Sep 17 00:00:00 2001 From: Barry Warsaw Date: Tue, 10 Mar 1998 00:16:09 +0000 Subject: [PATCH] Cosmetic --- Tools/pynche/ChipViewer.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Tools/pynche/ChipViewer.py b/Tools/pynche/ChipViewer.py index f1429fd6106..a2a90347c44 100644 --- a/Tools/pynche/ChipViewer.py +++ b/Tools/pynche/ChipViewer.py @@ -22,13 +22,13 @@ class ChipWidget(Pmw.MegaWidget): _HEIGHT = 80 def __init__(self, parent=None, **kw): - optionsdefs = (('chip_borderwidth', 2, None), - ('chip_width', self._WIDTH, None), - ('chip_height', self._HEIGHT, None), - ('label_text', 'Color', None), - ('color', 'blue', self.__set_color), - ) - self.defineoptions(kw, optionsdefs) + options = (('chip_borderwidth', 2, None), + ('chip_width', self._WIDTH, None), + ('chip_height', self._HEIGHT, None), + ('label_text', 'Color', None), + ('color', 'blue', self.__set_color), + ) + self.defineoptions(kw, options) # initialize base class -- after defining options Pmw.MegaWidget.__init__(self, parent)