Skip to content

Commit 60ce3b9

Browse files
author
Peter Amstutz
committed
Use KwArg[Any] will this make mypy happy?
1 parent 8a13b0b commit 60ce3b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cwltool/job.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ def __init__(self): # type: () -> None
132132
self.name = None # type: Text
133133
self.command_line = None # type: List[Text]
134134
self.pathmapper = None # type: PathMapper
135-
self.make_pathmapper = None # type: Callable[[List[Any], Text, Any], PathMapper]
135+
self.make_pathmapper = None # type: Callable[[List[Any], Text, KwArg[Any]], PathMapper]
136136
self.generatemapper = None # type: PathMapper
137137
self.collect_outputs = None # type: Union[Callable[[Any], Any], functools.partial[Any]]
138138
self.output_callback = None # type: Callable[[Any, Any], Any]

0 commit comments

Comments
 (0)