From 1f169e1ccb05e7994cf4c3c9f735feef85b30a7d Mon Sep 17 00:00:00 2001 From: Bruno Wagner Date: Wed, 5 Aug 2015 15:24:33 -0300 Subject: [style] Fixed PEP8 warning Line break before binary operator breaks PEP8, fixed that in the client api.py --- client/src/leap/soledad/client/api.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'client/src') diff --git a/client/src/leap/soledad/client/api.py b/client/src/leap/soledad/client/api.py index 303dde12..1be3adac 100644 --- a/client/src/leap/soledad/client/api.py +++ b/client/src/leap/soledad/client/api.py @@ -213,8 +213,7 @@ class Soledad(object): soledad_assert_type(self._passphrase, unicode) def initialize(attr, val): - return (getattr(self, attr, None) is None - and setattr(self, attr, val)) + return (getattr(self, attr, None) is None and setattr(self, attr, val)) initialize("_secrets_path", os.path.join( self.default_prefix, self.secrets_file_name)) -- cgit v1.2.3