From b8e67ad60a198d4b37c10871aac676eb907d6c2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?dni=20=E2=9A=A1?= Date: Mon, 15 Apr 2024 11:29:12 +0200 Subject: [PATCH] fix: properly start and stop tasks (#32) fix the fix --- __init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/__init__.py b/__init__.py index c73a19a..aa0e246 100644 --- a/__init__.py +++ b/__init__.py @@ -37,7 +37,7 @@ def boltcards_stop(): def boltcards_start(): - task = create_permanent_unique_task(wait_for_paid_invoices) + task = create_permanent_unique_task("ext_boltcards", wait_for_paid_invoices) scheduled_tasks.append(task)