mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-08 23:04:48 +08:00
ordering of variables should work now
This commit is contained in:
@@ -189,7 +189,7 @@ def complete(source, row, column, source_path):
|
||||
except IndexError:
|
||||
scope_generator = evaluate.get_names_for_scope(scope)
|
||||
completions = []
|
||||
for name_list in scope_generator:
|
||||
for dummy, name_list in scope_generator:
|
||||
completions += name_list
|
||||
#for c in completions:
|
||||
# if isinstance(, parsing.Function):
|
||||
|
||||
Reference in New Issue
Block a user