chore: fix all ruff lint errors + format — 0 errors, 306 tests pass
This commit is contained in:
+24
-7
@@ -1,13 +1,30 @@
|
||||
"""Pydantic schemas package."""
|
||||
|
||||
from app.schemas.plugin import PluginInfo, PluginListResponse, PluginActionResponse, PluginUninstallResponse
|
||||
from app.schemas.ai_copilot import (
|
||||
CopilotQueryRequest, CopilotAction, CopilotQueryResponse,
|
||||
CopilotExecuteRequest, CopilotExecuteResponse,
|
||||
CopilotHistoryResponse, CopilotMessageResponse,
|
||||
CopilotAction, # noqa: F401
|
||||
CopilotExecuteRequest, # noqa: F401
|
||||
CopilotExecuteResponse, # noqa: F401
|
||||
CopilotHistoryResponse, # noqa: F401
|
||||
CopilotMessageResponse, # noqa: F401
|
||||
CopilotQueryRequest, # noqa: F401
|
||||
CopilotQueryResponse, # noqa: F401
|
||||
)
|
||||
from app.schemas.plugin import (
|
||||
PluginActionResponse, # noqa: F401
|
||||
PluginInfo, # noqa: F401
|
||||
PluginListResponse, # noqa: F401
|
||||
PluginUninstallResponse, # noqa: F401
|
||||
)
|
||||
from app.schemas.workflow import (
|
||||
WorkflowCreate, WorkflowUpdate, WorkflowResponse, WorkflowListResponse,
|
||||
InstanceCreate, InstanceResponse, InstanceDetailResponse, InstanceListResponse,
|
||||
AdvanceRequest, StepHistoryResponse, WorkflowStep,
|
||||
AdvanceRequest, # noqa: F401
|
||||
InstanceCreate, # noqa: F401
|
||||
InstanceDetailResponse, # noqa: F401
|
||||
InstanceListResponse, # noqa: F401
|
||||
InstanceResponse, # noqa: F401
|
||||
StepHistoryResponse, # noqa: F401
|
||||
WorkflowCreate, # noqa: F401
|
||||
WorkflowListResponse, # noqa: F401
|
||||
WorkflowResponse, # noqa: F401
|
||||
WorkflowStep, # noqa: F401
|
||||
WorkflowUpdate, # noqa: F401
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user