From 6970bab14ee91da69b20820477ee9bacb878e9e4 Mon Sep 17 00:00:00 2001 From: John Lancaster <32917998+jsl12@users.noreply.github.com> Date: Fri, 30 Aug 2024 08:35:07 -0500 Subject: [PATCH] fixed patio --- apps/patio.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/patio.py b/apps/patio.py index 7eec127..2ae8e72 100644 --- a/apps/patio.py +++ b/apps/patio.py @@ -24,4 +24,4 @@ class Patio(Hass): def handle_door_close(self, entity: str, attribute: str, old: str, new: str, **kwargs): self.log('Door close') - self.run_in(callback=lambda *args: self.light.turn_off(), delay=30.0) + self.run_in(callback=lambda *args, **kwargs: self.light.turn_off(), delay=30.0)