From 602070ec9c9baa241f8ce4b2f9eb49a4e6ff6f16 Mon Sep 17 00:00:00 2001 From: Harry Date: Tue, 2 Sep 2025 12:06:40 +0800 Subject: [PATCH] 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 --- api/services/trigger_service.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/api/services/trigger_service.py b/api/services/trigger_service.py index 4b2bfaab2b..75140ad0ea 100644 --- a/api/services/trigger_service.py +++ b/api/services/trigger_service.py @@ -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]: