diff options
author | Josh Blum <josh@joshknows.com> | 2009-09-05 01:54:41 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2009-09-05 01:54:41 -0700 |
commit | 5f54b018b3a84ba4b68009a1c326ba73eaea8cfd (patch) | |
tree | 3e97334dbebb3b871952d6d179fa2f82c05bacca /grc/gui/Element.py | |
parent | 4cc3667b348d58ef4fb30f0ecbe494cdb109fc83 (diff) |
standardized the Element inheritance __init__ usage in gui
Diffstat (limited to 'grc/gui/Element.py')
-rw-r--r-- | grc/gui/Element.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/grc/gui/Element.py b/grc/gui/Element.py index 3151917237..ecf1de1ca3 100644 --- a/grc/gui/Element.py +++ b/grc/gui/Element.py @@ -32,7 +32,7 @@ class Element(object): and methods to detect selection of those areas. """ - def __init__(self, *args, **kwargs): + def __init__(self): """ Make a new list of rectangular areas and lines, and set the coordinate and the rotation. """ |