diff options
-rw-r--r-- | client/src/leap/soledad/client/api.py | 6 | ||||
-rw-r--r-- | client/src/leap/soledad/client/examples/run_benchmark.py | 3 |
2 files changed, 6 insertions, 3 deletions
diff --git a/client/src/leap/soledad/client/api.py b/client/src/leap/soledad/client/api.py index 6c9dce54..219be969 100644 --- a/client/src/leap/soledad/client/api.py +++ b/client/src/leap/soledad/client/api.py @@ -211,8 +211,10 @@ class Soledad(object): Initialize configuration using default values for missing params. """ soledad_assert_type(self._passphrase, unicode) - initialize = lambda attr, val: getattr( - self, attr, None) is None and setattr(self, attr, val) + + def initialize(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)) diff --git a/client/src/leap/soledad/client/examples/run_benchmark.py b/client/src/leap/soledad/client/examples/run_benchmark.py index a112cf45..61621e89 100644 --- a/client/src/leap/soledad/client/examples/run_benchmark.py +++ b/client/src/leap/soledad/client/examples/run_benchmark.py @@ -10,8 +10,9 @@ CSVFILE = 'bench.csv' cmd = "SILENT=1 TIMES={times} TMPDIR={tmpdir} python ./use_{version}api.py" -parse_time = lambda r: r.split('\n')[-1] +def parse_time(r): + return r.split('\n')[-1] with open(CSVFILE, 'w') as log: |