From: Benjamin Braatz Date: Tue, 2 Mar 2021 21:29:18 +0000 (+0100) Subject: Add forgotten super() calls in util.py X-Git-Tag: v0.3.0~81 X-Git-Url: http://git.graph-it.com/?a=commitdiff_plain;h=be6d1fc5e4f8a6b129d4bf7cccd095fea941d790;p=graphit%2Fcontrolpi.git Add forgotten super() calls in util.py --- diff --git a/controlpi/plugins/util.py b/controlpi/plugins/util.py index a3687a8..0e598a2 100644 --- a/controlpi/plugins/util.py +++ b/controlpi/plugins/util.py @@ -68,6 +68,7 @@ class Alias(BasePlugin): self._from = conf['from'] self._to = conf['to'] self._bus.register(self._name, [self._to], [self._from], self._alias) + super()._process_conf(conf) class State(BasePlugin): @@ -93,3 +94,4 @@ class State(BasePlugin): 'command': 'set state', 'state': bool}] self._bus.register(self._name, sends, receives, self._receive) + super()._process_conf(conf)