X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/353eb4f4c4fb52e7f2a1c9aaad93e9d6bf0088f4..2b27132d13fd72f29dbab2297f0d2dc1c110eed1:/sdk/cwl/arvados_cwl/__init__.py diff --git a/sdk/cwl/arvados_cwl/__init__.py b/sdk/cwl/arvados_cwl/__init__.py index 36fe6efbb2..3b14701a9b 100644 --- a/sdk/cwl/arvados_cwl/__init__.py +++ b/sdk/cwl/arvados_cwl/__init__.py @@ -11,6 +11,7 @@ import threading import hashlib import copy import json +import re from functools import partial import pkg_resources # part of setuptools @@ -629,6 +630,7 @@ def arg_parser(): # type: () -> argparse.ArgumentParser def add_arv_hints(): cache = {} + cwltool.draft2tool.ACCEPTLIST_EN_RELAXED_RE = re.compile(r".*") res = pkg_resources.resource_stream(__name__, 'arv-cwl-schema.yml') cache["http://arvados.org/cwl"] = res.read() res.close()