Skip to content

Commit 7630a51

Browse files
committed
Fix format
1 parent 03b2f02 commit 7630a51

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

cwltool/load_tool.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -588,7 +588,11 @@ def make_tool(
588588
resolveduri: Union[float, str, CommentedMap, CommentedSeq, None]
589589
metadata: CWLObjectType
590590

591-
if loadingContext.fast_parser and isinstance(uri, str) and not loadingContext.skip_resolve_all:
591+
if (
592+
loadingContext.fast_parser
593+
and isinstance(uri, str)
594+
and not loadingContext.skip_resolve_all
595+
):
592596
resolveduri, metadata = fast_parser(None, None, uri, loadingContext)
593597
else:
594598
resolveduri, metadata = loadingContext.loader.resolve_ref(uri)

0 commit comments

Comments
 (0)