From ebe903e59394f04d79fc25ffc8bd769351d95b96 Mon Sep 17 00:00:00 2001 From: phfr <84philipp@gmail.com> Date: Tue, 21 Oct 2025 12:49:26 +0200 Subject: [PATCH] fix: core init file --- datadivr/core/tasks.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/datadivr/core/tasks.py b/datadivr/core/tasks.py index 23a167a..c760c6d 100644 --- a/datadivr/core/tasks.py +++ b/datadivr/core/tasks.py @@ -88,3 +88,7 @@ async def _run_periodic(func: Callable[[], Awaitable[Any]], interval: float, nam except Exception: logger.exception(f"Error in task {name}") await asyncio.sleep(interval) + + +# Development note: This module provides background task management +# for the datadivr project, supporting both one-off and periodic tasks.