Skip to content

Commit

Permalink
ArraySchema -> CWLArraySchema and RecordSchema -> CWLRecordSchema
Browse files Browse the repository at this point in the history
  • Loading branch information
GlassOfWhiskey committed Oct 8, 2023
1 parent 0815bbb commit 8ffe613
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cwl_utils/parser/cwl_v1_0.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ def load_field(
fieldtype: "_Loader",
baseuri: str,
loadingOptions: LoadingOptions,
lc: Optional[List[Any]],
lc: Optional[List[Any]] = None,
) -> Any:
"""Load field."""
if isinstance(val, MutableMapping):
Expand Down
2 changes: 1 addition & 1 deletion cwl_utils/parser/cwl_v1_1.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ def load_field(
fieldtype: "_Loader",
baseuri: str,
loadingOptions: LoadingOptions,
lc: Optional[List[Any]],
lc: Optional[List[Any]] = None,
) -> Any:
"""Load field."""
if isinstance(val, MutableMapping):
Expand Down
2 changes: 1 addition & 1 deletion cwl_utils/parser/cwl_v1_2.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ def load_field(
fieldtype: "_Loader",
baseuri: str,
loadingOptions: LoadingOptions,
lc: Optional[List[Any]],
lc: Optional[List[Any]] = None,
) -> Any:
"""Load field."""
if isinstance(val, MutableMapping):
Expand Down

0 comments on commit 8ffe613

Please sign in to comment.