diff --git a/plugin/jedi_vim.py b/plugin/jedi_vim.py index 8422e0f..ec775e3 100644 --- a/plugin/jedi_vim.py +++ b/plugin/jedi_vim.py @@ -76,7 +76,7 @@ def complete(): script = get_script(source=source, column=column) completions = script.completions() sig = script.call_signatures() - call_def =sig[0] if sig else None + call_def = sig[0] if sig else None out = [] for c in completions: