We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 72e4ffb commit 3fd4594Copy full SHA for 3fd4594
cwltool/load_tool.py
@@ -39,7 +39,7 @@
39
from .errors import GraphTargetMissingException
40
from .loghandler import _logger
41
from .process import Process, get_schema, shortname
42
-from .update import ALLUPDATES
+from .update import ALLUPDATES, INTERNAL_VERSION
43
from .utils import CWLObjectType, ResolverType, visit_class
44
45
jobloaderctx = {
@@ -650,7 +650,7 @@ def resolve_overrides(
650
ret, _ = ovloader.resolve_all(ov, baseurl)
651
if not isinstance(ret, CommentedMap):
652
raise Exception("Expected CommentedMap, got %s" % type(ret))
653
- cwl_docloader = get_schema("v1.0")[0]
+ cwl_docloader = get_schema(INTERNAL_VERSION)[0]
654
cwl_docloader.resolve_all(ret, ov_uri)
655
return cast(List[CWLObjectType], ret["http://commonwl.org/cwltool#overrides"])
656
0 commit comments