1
0
forked from VimPlug/jedi

stars -> star_count.

This commit is contained in:
Dave Halter
2017-04-08 15:26:57 +02:00
parent 1625834f81
commit 545cb26f78
6 changed files with 29 additions and 29 deletions

View File

@@ -22,7 +22,7 @@ def get_call_signature_param_names(call_signatures):
# public API and we don't want to make the internal
# Name object public.
tree_param = tree.search_ancestor(tree_name, 'param')
if tree_param.stars == 0: # no *args/**kwargs
if tree_param.star_count == 0: # no *args/**kwargs
yield p._name