Skip to content

Commit

Permalink
fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
giannisdoukas committed Jun 21, 2020
1 parent 0c9c9fc commit 2814f3d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ipython2cwl/cwltool.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,17 +39,17 @@ def visit_AnnAssign(self, node):
),
CWLBooleanInput.__name__: (
'boolean',
'click.BOOL',
'lambda flag: flag.upper() == "TRUE"',
input_flag,
),
CWLIntInput.__name__: (
'int',
'click.INT',
'int',
input_flag,
),
CWLStringInput.__name__: (
'string',
'click.STRING',
'str',
input_flag,
),
}
Expand Down

0 comments on commit 2814f3d

Please sign in to comment.