diff --git a/src/alpine_bits_python/db_setup.py b/src/alpine_bits_python/db_setup.py index bb526ca..b56a28a 100644 --- a/src/alpine_bits_python/db_setup.py +++ b/src/alpine_bits_python/db_setup.py @@ -270,7 +270,7 @@ async def reprocess_stuck_webhooks( ) ) ) - stuck_webhooks = result.scalars().all() + stuck_webhooks: list[WebhookRequest] = result.scalars().all() if not stuck_webhooks: _LOGGER.info("No stuck webhooks found")