refactor(automations): extract dispatch_run; move manual adapter under triggers/manual/dispatch.py

This commit is contained in:
CREDO23 2026-05-27 17:20:23 +02:00
parent 8c32455818
commit 861b91004d
6 changed files with 97 additions and 56 deletions

View file

@ -0,0 +1,7 @@
"""Dispatch errors raised when a fire request cannot be turned into a run."""
from __future__ import annotations
class DispatchError(Exception):
"""A dispatch could not proceed (missing trigger, invalid inputs, ...)."""