From c9b4e9ed3a34c1098074fc8afdf44b4d5c80eb88 Mon Sep 17 00:00:00 2001 From: Strahinja Val Markovic Date: Fri, 27 Sep 2013 16:50:49 -0700 Subject: [PATCH] Minor code style changes --- python/ycm/completers/python/jedi_completer.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 ):