From dcf08eb42b5ea6694ba1d0bcbbaa4870cc674908 Mon Sep 17 00:00:00 2001 From: Maximiliano Osorio Date: Wed, 12 May 2021 09:35:32 -0400 Subject: [PATCH] fix: change type of InputFile arg to string fixs: https://github.com/common-workflow-lab/ipython2cwl/issues/27 --- ipython2cwl/cwltoolextractor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ipython2cwl/cwltoolextractor.py b/ipython2cwl/cwltoolextractor.py index a21965e..c7d93a0 100644 --- a/ipython2cwl/cwltoolextractor.py +++ b/ipython2cwl/cwltoolextractor.py @@ -36,7 +36,7 @@ class AnnotatedVariablesExtractor(ast.NodeTransformer): input_type_mapper: Dict[Tuple[str, ...], Tuple[str, str]] = { (CWLFilePathInput.__name__,): ( 'File', - 'pathlib.Path', + 'str', ), (CWLBooleanInput.__name__,): ( 'boolean',