1
0
forked from VimPlug/jedi

remove get_set_vars completely from existance

This commit is contained in:
Dave Halter
2014-04-14 12:40:59 +02:00
parent 237af765b7
commit 6a40c9b671
9 changed files with 37 additions and 52 deletions

View File

@@ -191,7 +191,7 @@ class Parser(object):
param.add_annotation(annotation)
# params without vars are usually syntax errors.
if param and (param.get_set_vars()):
if param and (param.get_defined_names()):
param.position_nr = pos
names.append(param)
pos += 1