From be6d1fc5e4f8a6b129d4bf7cccd095fea941d790 Mon Sep 17 00:00:00 2001 From: Benjamin Braatz Date: Tue, 2 Mar 2021 22:29:18 +0100 Subject: [PATCH] Add forgotten super() calls in util.py --- controlpi/plugins/util.py | 2 ++ 1 file changed, 2 insertions(+) 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) -- 2.34.1