From e644eefa6d7fd9b3e8ab0778ed0ecb910267203d Mon Sep 17 00:00:00 2001 From: John Lancaster <32917998+jsl12@users.noreply.github.com> Date: Sat, 25 Nov 2023 18:50:47 -0600 Subject: [PATCH] added await to MotionCanceller --- apps/scene_detect.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/scene_detect.py b/apps/scene_detect.py index a247b52..2311e44 100644 --- a/apps/scene_detect.py +++ b/apps/scene_detect.py @@ -22,4 +22,4 @@ class MotionCanceller(SceneDetector): async def scene_detected(self): await super().scene_detected() app = await self.get_app(self.args['app']) - app.cancel_motion_callback(new='off') \ No newline at end of file + await app.cancel_motion_callback(new='off') \ No newline at end of file