mirror of
https://github.com/davidhalter/jedi-vim.git
synced 2025-12-07 11:14:32 +08:00
Merge pull request #140 from heavenshell/fix_pep8_violation
Add whitespace after =
This commit is contained in:
@@ -76,7 +76,7 @@ def complete():
|
|||||||
script = get_script(source=source, column=column)
|
script = get_script(source=source, column=column)
|
||||||
completions = script.completions()
|
completions = script.completions()
|
||||||
sig = script.call_signatures()
|
sig = script.call_signatures()
|
||||||
call_def =sig[0] if sig else None
|
call_def = sig[0] if sig else None
|
||||||
|
|
||||||
out = []
|
out = []
|
||||||
for c in completions:
|
for c in completions:
|
||||||
|
|||||||
Reference in New Issue
Block a user