File tree Expand file tree Collapse file tree 3 files changed +13
-7
lines changed
Expand file tree Collapse file tree 3 files changed +13
-7
lines changed Original file line number Diff line number Diff line change 3737
3838
3939class NormalizedWorkflowStep (BaseModel ):
40- """A Format 2 workflow step with all union types resolved to their
41- canonical list form and ids guaranteed populated."""
40+ """A Format 2 workflow step with all union types resolved to canonical list form.
41+
42+ Ids are guaranteed populated.
43+ """
4244
4345 model_config = ConfigDict (populate_by_name = True , extra = "allow" )
4446
Original file line number Diff line number Diff line change 5454
5555
5656class NormalizedNativeStep (BaseModel ):
57- """A native workflow step with all optional containers resolved to empty defaults
58- and tool_state guaranteed to be a parsed dict."""
57+ """A native workflow step with optional containers resolved to empty defaults.
58+
59+ tool_state is guaranteed to be a parsed dict.
60+ """
5961
6062 model_config = ConfigDict (populate_by_name = True , extra = "allow" )
6163
@@ -86,8 +88,10 @@ class NormalizedNativeStep(BaseModel):
8688
8789
8890class NormalizedNativeWorkflow (BaseModel ):
89- """A native Galaxy workflow with all optional containers resolved to empty
90- defaults and steps containing NormalizedNativeStep instances."""
91+ """A native Galaxy workflow with optional containers resolved to empty defaults.
92+
93+ Steps contain NormalizedNativeStep instances.
94+ """
9195
9296 model_config = ConfigDict (populate_by_name = True , extra = "allow" )
9397
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ class ConversionOptions:
4747 expansion control, and URL resolution.
4848 """
4949
50- def __init__ (
50+ def __init__ ( # noqa: D107
5151 self ,
5252 workflow_directory : str | Path | None = None ,
5353 encode_tool_state_json : bool = True ,
You can’t perform that action at this time.
0 commit comments