diff --git a/python/ycm/completers/python/jedi_completer.py b/python/ycm/completers/python/jedi_completer.py index ea9113a0..b2149076 100644 --- a/python/ycm/completers/python/jedi_completer.py +++ b/python/ycm/completers/python/jedi_completer.py @@ -72,9 +72,9 @@ class JediCompleter( ThreadedCompleter ): for completion in script.completions() ] def DefinedSubcommands( self ): - return [ "GoToDefinition", - "GoToDeclaration", - "GoToDefinitionElseDeclaration" ] + return [ 'GoToDefinition', + 'GoToDeclaration', + 'GoToDefinitionElseDeclaration' ] def OnUserCommand( self, arguments, request_data ):