Get rid of all completions usages

This commit is contained in:
Dave Halter
2019-12-20 17:47:37 +01:00
parent 5bf6e7048b
commit 7f8ba17990
4 changed files with 20 additions and 21 deletions

View File

@@ -47,7 +47,7 @@ def run(code, index, infer=False):
if infer:
result = script.goto_definitions()
else:
result = script.completions()
result = script.complete()
print('Used %ss for the %sth run.' % (time.time() - start, index + 1))
return result