@@ -154,7 +154,7 @@ def next_seg(remain, obj): # type: (Text, Any) -> Any
154
154
155
155
156
156
def evaluator (ex , jslib , obj , fullJS = False , timeout = None , force_docker_pull = False , debug = False , js_console = False ):
157
- # type: (Text, Text, Dict[Text, Any], bool, int, bool, bool) -> JSON
157
+ # type: (Text, Text, Dict[Text, Any], bool, int, bool, bool, bool ) -> JSON
158
158
m = param_re .match (ex )
159
159
if m :
160
160
if m .end (1 )+ 1 == len (ex ) and m .group (1 ) == "null" :
@@ -174,7 +174,7 @@ def evaluator(ex, jslib, obj, fullJS=False, timeout=None, force_docker_pull=Fals
174
174
def interpolate (scan , rootvars ,
175
175
timeout = None , fullJS = None , jslib = "" , force_docker_pull = False ,
176
176
debug = False , js_console = False ):
177
- # type: (Text, Dict[Text, Any], int, bool, Union[str, Text], bool, bool) -> JSON
177
+ # type: (Text, Dict[Text, Any], int, bool, Union[str, Text], bool, bool, bool ) -> JSON
178
178
scan = scan .strip ()
179
179
parts = []
180
180
w = scanner (scan )
@@ -203,7 +203,7 @@ def interpolate(scan, rootvars,
203
203
204
204
def do_eval (ex , jobinput , requirements , outdir , tmpdir , resources ,
205
205
context = None , pull_image = True , timeout = None , force_docker_pull = False , debug = False , js_console = False ):
206
- # type: (Union[dict, AnyStr], Dict[Text, Union[Dict, List, Text]], List[Dict[Text, Any]], Text, Text, Dict[Text, Union[int, Text]], Any, bool, int, bool, bool) -> Any
206
+ # type: (Union[dict, AnyStr], Dict[Text, Union[Dict, List, Text]], List[Dict[Text, Any]], Text, Text, Dict[Text, Union[int, Text]], Any, bool, int, bool, bool, bool ) -> Any
207
207
208
208
runtime = copy .copy (resources )
209
209
runtime ["tmpdir" ] = docker_windows_path_adjust (tmpdir )
0 commit comments