1
0
forked from VimPlug/jedi

Fix some call signature tests

This commit is contained in:
Dave Halter
2019-07-09 00:46:53 -07:00
parent ee5557ddf6
commit e85fba844c
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -250,7 +250,7 @@ def _iter_arguments(nodes, position):
if second.start_pos < position:
yield 0, first.value, True
else:
yield 0, remove_after_pos(first), True
yield 0, remove_after_pos(first), False
elif first in ('*', '**'):
yield len(first.value), remove_after_pos(second), False
else: