From e793f9e8714d33a9bbd6659e9fb17a13f67c4b00 Mon Sep 17 00:00:00 2001 From: Harry Date: Sat, 11 Oct 2025 12:44:54 +0800 Subject: [PATCH] refactor(trigger): remove unnecessary whitespace in trigger-related files - Cleaned up the code by removing extraneous whitespace in `trigger.py` and `workflow_plugin_trigger_service.py`, improving readability and maintaining code style consistency. --- api/core/plugin/impl/trigger.py | 1 - api/services/trigger/workflow_plugin_trigger_service.py | 1 - 2 files changed, 2 deletions(-) diff --git a/api/core/plugin/impl/trigger.py b/api/core/plugin/impl/trigger.py index 147e320f36..9c975ebaae 100644 --- a/api/core/plugin/impl/trigger.py +++ b/api/core/plugin/impl/trigger.py @@ -19,7 +19,6 @@ from models.provider_ids import TriggerProviderID class PluginTriggerManager(BasePluginClient): - def fetch_trigger_providers(self, tenant_id: str) -> list[PluginTriggerProviderEntity]: """ Fetch trigger providers for the given tenant. diff --git a/api/services/trigger/workflow_plugin_trigger_service.py b/api/services/trigger/workflow_plugin_trigger_service.py index 54d26fbef6..e8bfa9c06f 100644 --- a/api/services/trigger/workflow_plugin_trigger_service.py +++ b/api/services/trigger/workflow_plugin_trigger_service.py @@ -1,4 +1,3 @@ - from pydantic import BaseModel from sqlalchemy import select from sqlalchemy.orm import Session