File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -190,7 +190,7 @@ def is_streamable(file: str) -> bool:
190
190
return False
191
191
for inp in self .joborder .values ():
192
192
if isinstance (inp , dict ) and inp .get ("location" , None ) == file :
193
- return inp .get ("streamable" , False )
193
+ return cast ( bool , inp .get ("streamable" , False ) )
194
194
return False
195
195
196
196
for knownfile in self .pathmapper .files ():
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ show_column_numbers = true
5
5
show_error_codes = true
6
6
pretty = true
7
7
warn_unreachable = True
8
+ new_type_inference = True
8
9
9
10
[mypy-galaxy.tool_util.*]
10
11
ignore_missing_imports = True
Original file line number Diff line number Diff line change 85
85
"cwltool/workflow.py" ,
86
86
]
87
87
88
- from mypyc .build import mypycify # type: ignore[import]
88
+ from mypyc .build import mypycify # type: ignore[import-untyped ]
89
89
90
90
opt_level = os .getenv ("MYPYC_OPT_LEVEL" , "3" )
91
91
ext_modules = mypycify (mypyc_targets , opt_level = opt_level )
You can’t perform that action at this time.
0 commit comments