diff options
Diffstat (limited to 'grc/gui/Connection.py')
-rw-r--r-- | grc/gui/Connection.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/grc/gui/Connection.py b/grc/gui/Connection.py index 9b483383ac..1c00845356 100644 --- a/grc/gui/Connection.py +++ b/grc/gui/Connection.py @@ -37,9 +37,9 @@ class Connection(Element, _Connection): The arrow coloring exposes the enabled and valid states. """ - def __init__(self, **kwargs): + def __init__(self, *args, **kwargs): Element.__init__(self) - _Connection.__init__(self, **kwargs) + _Connection.__init__(self, *args, **kwargs) self._color = self._color2 = self._arrow_color = None |