refactor: remove unused param

This commit is contained in:
Vlad Stan
2026-07-09 16:35:34 +03:00
parent 6400ee985e
commit bca10998bd
+2 -2
View File
@@ -118,7 +118,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,
@@ -495,7 +495,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:
task_manager.init()