diff options
author | Shougo Matsushita <Shougo.Matsu@gmail.com> | 2017-03-09 08:30:32 +0900 |
---|---|---|
committer | Shougo Matsushita <Shougo.Matsu@gmail.com> | 2017-03-09 08:30:32 +0900 |
commit | bceb447e36dc3a562f8d3bdedce1170f52ac8466 (patch) | |
tree | f94c77c21fe63284ab467005663a995b0b2271d6 /rplugin/python3 | |
parent | bcb89a76d75e4eafaad2cf60fa0c77a092298192 (diff) | |
download | deoplete.nvim-bceb447e36dc3a562f8d3bdedce1170f52ac8466.zip |
Fix #443 gather_results() again
Diffstat (limited to 'rplugin/python3')
-rw-r--r-- | rplugin/python3/deoplete/deoplete.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/rplugin/python3/deoplete/deoplete.py b/rplugin/python3/deoplete/deoplete.py index ab4af7a..476b0d1 100644 --- a/rplugin/python3/deoplete/deoplete.py +++ b/rplugin/python3/deoplete/deoplete.py @@ -151,7 +151,6 @@ class Deoplete(logger.LoggingMixin): return results.values() def merge_results(self, results, context_input): - results = [x for x in results if x['context']['candidates']] if not results: return (False, -1, []) |