Skip to content

Commit 22a43ee

Browse files
author
Jan Mollowitz
committed
Coding standard
1 parent b20e25c commit 22a43ee

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

rplugin/python3/deoplete/sources/deoplete_padawan.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,10 @@ def gather_candidates(self, context):
120120
return candidates
121121

122122
def get_candidate_info(self, item):
123-
return self.get_candidate_abbr(item) + self.get_candidate_signature(item)
123+
abbr = self.get_candidate_abbr(item)
124+
signature = self.get_candidate_signature(item)
125+
126+
return abbr + signature
124127

125128
def get_candidate_abbr(self, item):
126129
if 'menu' in item and item['menu']:

0 commit comments

Comments
 (0)