From 24132a317f2f36dc02d33093cad78357ae3cb566 Mon Sep 17 00:00:00 2001 From: JarbasAI <33701864+JarbasAl@users.noreply.github.com> Date: Wed, 18 Oct 2023 23:11:51 +0100 Subject: [PATCH] Update admin.py --- ovos_PHAL/admin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ovos_PHAL/admin.py b/ovos_PHAL/admin.py index ac30e70..9a9a530 100644 --- a/ovos_PHAL/admin.py +++ b/ovos_PHAL/admin.py @@ -40,7 +40,7 @@ def __init__(self, config=None, bus=None, on_ready=on_admin_ready, on_error=on_a watchdog=lambda: None, skill_id="PHAL.admin", **kwargs): if config and "admin" not in config: config = {"admin": config} - super().__init__(config, bus, on_ready, on_error, on_stopping, on_started, on_alive, watchdog, name, **kwargs) + super().__init__(config, bus, on_ready, on_error, on_stopping, on_started, on_alive, watchdog, skill_id, **kwargs) def load_plugins(self): for name, plug in find_admin_plugins().items():