From e1437c0c0fd171efe9bc250954aca51c6b992049 Mon Sep 17 00:00:00 2001 From: Vlad Stan Date: Tue, 30 Jun 2026 14:54:57 +0300 Subject: [PATCH] refactor: remove unused param --- lnbits/app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lnbits/app.py b/lnbits/app.py index 5eb5b5b07..b9824b1bd 100644 --- a/lnbits/app.py +++ b/lnbits/app.py @@ -113,7 +113,7 @@ async def startup(app: FastAPI): create_llms_txt_route(app) # initialize tasks - register_async_tasks(app) + register_async_tasks() enqueue_admin_notification( NotificationType.server_start_stop, @@ -490,7 +490,7 @@ async def check_and_register_extensions(app: FastAPI) -> None: await update_installed_extension_state(ext_id=ext.code, active=False) -def register_async_tasks(app: FastAPI) -> None: +def register_async_tasks() -> None: create_permanent_task(wait_for_audit_data) create_permanent_task(wait_notification_messages)