From e37af6c68a92e00bb395ad1854d181e9e10ece52 Mon Sep 17 00:00:00 2001 From: JarbasAI <33701864+JarbasAl@users.noreply.github.com> Date: Mon, 28 Oct 2024 22:33:24 +0000 Subject: [PATCH] fix:ready_settings only wait for "skills" like default config used to do --- __init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/__init__.py b/__init__.py index 28d14f1..6d5bc0f 100644 --- a/__init__.py +++ b/__init__.py @@ -74,7 +74,7 @@ def is_device_ready(self) -> bool: # skills might be loaded by core or run standalone, we should standardize how this is checked via bus # perhaps ProcessStatus with skill_id ? services = {k: False for k in - self.settings.get("ready_settings", ["skills", "speech", "audio"])} + self.settings.get("ready_settings", ["skills"])} start = monotonic() while not is_ready: is_ready = self.check_services_ready(services)