From 0b933d65c44cc630adb46bf8fd1e5f67ef6eed66 Mon Sep 17 00:00:00 2001 From: = Date: Wed, 23 Aug 2023 08:52:24 +0100 Subject: [PATCH] do not wait for automations to be finished before continuing executing code --- custom_components/alarmo/automations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/alarmo/automations.py b/custom_components/alarmo/automations.py index 883d857..c4920f9 100755 --- a/custom_components/alarmo/automations.py +++ b/custom_components/alarmo/automations.py @@ -217,7 +217,7 @@ async def async_execute_automation(self, automation_id: str, alarm_entity: Alarm domain, service, service_data, - blocking=True, + blocking=False, context={}, ) )