From c5f31068a470e65c23399f7e60995bcf453c0bc8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Erik=20Bj=C3=A4reholt?= Date: Thu, 17 Oct 2024 19:18:28 +0200 Subject: [PATCH] fix: use client.wait_for_start() --- aw_notify/main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/aw_notify/main.py b/aw_notify/main.py index ccc9a5a..57a3f85 100644 --- a/aw_notify/main.py +++ b/aw_notify/main.py @@ -280,6 +280,7 @@ def start(testing=False): """Start the notification service.""" global aw aw = aw_client.ActivityWatchClient("aw-notify", testing=testing) + aw.wait_for_start() send_checkin() send_checkin_yesterday()