Skip to content

Commit

Permalink
Remove the description from fields, where the description equals to TODO
Browse files Browse the repository at this point in the history
  • Loading branch information
heisner-tillman committed May 23, 2024
1 parent 959ca54 commit 655acf7
Showing 1 changed file with 1 addition and 11 deletions.
12 changes: 1 addition & 11 deletions lib/galaxy/schema/workflows.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ class InputConnection(Model):
input_subworkflow_step_id: Optional[int] = Field(
None,
title="Input Subworkflow Step ID",
description="TODO",
)


Expand Down Expand Up @@ -166,7 +165,6 @@ class ToolShedRepositorySummary(Model):
changeset_revision: str = Field(
...,
title="Changeset Revision",
description="TODO",
)
tool_shed: str = Field(
...,
Expand Down Expand Up @@ -204,7 +202,6 @@ class StepIn(Model):
default: Any = Field(
...,
title="Default",
description="TODO",
)


Expand Down Expand Up @@ -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,
Expand Down Expand Up @@ -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,
Expand All @@ -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,
Expand Down Expand Up @@ -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",
Expand Down

0 comments on commit 655acf7

Please sign in to comment.