refactor(trigger): improve method signature formatting in TriggerService

- Adjust the formatting of the `process_triggered_workflows` method signature for better readability
- Ensure consistent style across method definitions in the TriggerService class

Co-authored-by: Claude <noreply@anthropic.com>
This commit is contained in:
Harry 2025-09-02 12:06:40 +08:00
parent afd8989150
commit 602070ec9c
1 changed files with 4 additions and 2 deletions

View File

@ -17,9 +17,11 @@ class TriggerService:
__ENDPOINT_REQUEST_CACHE_EXPIRE_MS__ = 5 * 60 * 1000
@classmethod
def process_triggered_workflows(cls, subscription: TriggerSubscription, trigger: TriggerEntity, request: Request) -> None:
def process_triggered_workflows(
cls, subscription: TriggerSubscription, trigger: TriggerEntity, request: Request
) -> None:
"""Process triggered workflows."""
pass
@classmethod
def select_triggers(cls, controller, dispatch_response, provider_id, subscription) -> list[TriggerEntity]: