mirror of https://github.com/langgenius/dify.git
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:
parent
afd8989150
commit
602070ec9c
|
|
@ -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]:
|
||||
|
|
|
|||
Loading…
Reference in New Issue