Skip to content

Commit 6e9590f

Browse files
authored
Change ACCEPTLIST_EN_RELAXED_RE to accept anything. (#363)
1 parent 327dd43 commit 6e9590f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cwltool/draft2tool.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
from .utils import aslist
2727

2828
ACCEPTLIST_EN_STRICT_RE = re.compile(r"^[a-zA-Z0-9._+-]+$")
29-
ACCEPTLIST_EN_RELAXED_RE = re.compile(r"^[ #a-zA-Z0-9._+-]+$") # with spaces and hashes
29+
ACCEPTLIST_EN_RELAXED_RE = re.compile(r".*") # Accept anything
3030
ACCEPTLIST_RE = ACCEPTLIST_EN_STRICT_RE
3131

3232
from .flatten import flatten

0 commit comments

Comments
 (0)