Skip to content

Commit

Permalink
fix: change type of InputFile arg to string
Browse files Browse the repository at this point in the history
  • Loading branch information
mosoriob committed May 12, 2021
1 parent 2ae1c14 commit dcf08eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ipython2cwl/cwltoolextractor.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit dcf08eb

Please sign in to comment.