1
0
forked from VimPlug/jedi

Fix some more issues with imports and attribute warnings of static analysis.

This commit is contained in:
Dave Halter
2016-12-14 01:35:55 +01:00
parent 4074ca1e84
commit 6c4abcc84c
4 changed files with 17 additions and 17 deletions

View File

@@ -78,7 +78,7 @@ def search_params(evaluator, parent_context, funcdef):
funcdef
)
if function_executions:
zipped_params = zip(*(
zipped_params = zip(*list(
function_execution.get_params()
for function_execution in function_executions
))