From 655acf74b19034c90305514eb3f34cdbdb68a2af Mon Sep 17 00:00:00 2001 From: heisner-tillman Date: Thu, 23 May 2024 15:20:02 +0200 Subject: [PATCH] Remove the description from fields, where the description equals to TODO --- lib/galaxy/schema/workflows.py | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/lib/galaxy/schema/workflows.py b/lib/galaxy/schema/workflows.py index 06e6686d4b50..112b84d02d1b 100644 --- a/lib/galaxy/schema/workflows.py +++ b/lib/galaxy/schema/workflows.py @@ -68,7 +68,6 @@ class InputConnection(Model): input_subworkflow_step_id: Optional[int] = Field( None, title="Input Subworkflow Step ID", - description="TODO", ) @@ -166,7 +165,6 @@ class ToolShedRepositorySummary(Model): changeset_revision: str = Field( ..., title="Changeset Revision", - description="TODO", ) tool_shed: str = Field( ..., @@ -204,7 +202,6 @@ class StepIn(Model): default: Any = Field( ..., title="Default", - description="TODO", ) @@ -248,7 +245,6 @@ class InvokeWorkflowPayload(GetTargetHistoryPayload): True, title="Require Exact Tool Versions", description="If true, exact tool versions are required for workflow invocation.", - # description="TODO", ) allow_tool_state_corrections: Optional[bool] = Field( False, @@ -290,27 +286,22 @@ def inputs_string_to_json(cls, v): inputs: Optional[Dict[str, Any]] = Field( None, title="Inputs", - description="TODO", ) ds_map: Optional[Dict[str, Dict[str, Any]]] = Field( {}, title="Dataset Map", - description="TODO", ) resource_params: Optional[Dict[str, Any]] = Field( {}, title="Resource Parameters", - description="TODO", ) replacement_params: Optional[Dict[str, Any]] = Field( {}, title="Replacement Parameters", - description="TODO", ) step_parameters: Optional[Dict[str, Any]] = Field( None, title="Step Parameters", - description="TODO", ) no_add_to_history: Optional[bool] = Field( False, @@ -332,7 +323,6 @@ def inputs_string_to_json(cls, v): None, title="Effective Outputs", # lib/galaxy/workflow/run_request.py - see line 455 - description="TODO", ) preferred_intermediate_object_store_id: Optional[str] = Field( None, @@ -810,7 +800,7 @@ class WorkflowDictExportStep(WorkflowDictStepsExtendedBase): title="Inputs", description="The inputs of the step.", ) - in_parameter: Optional[Dict[str, StepIn]] = Field(None, title="In", description="TODO", alias="in") + in_parameter: Optional[Dict[str, StepIn]] = Field(None, title="In", alias="in") input_connections: Optional[Dict[str, Union[InputConnection, List[InputConnection]]]] = Field( None, title="Input Connections",