diff --git a/bob/bio/base/script/vanilla_biometrics.py b/bob/bio/base/script/vanilla_biometrics.py index d6821620710792af6b1d3b2721ae8a48ac608665..f2f4e71331c995fd938ca06406f97cef46e609a6 100644 --- a/bob/bio/base/script/vanilla_biometrics.py +++ b/bob/bio/base/script/vanilla_biometrics.py @@ -175,14 +175,14 @@ def vanilla_biometrics(pipeline, database, dask_client, groups, output, **kwargs if dask_client is not None: result = result.compute(scheduler=dask_client) else: - logger.warning( - "`dask_client` not set. Your pipeline will run locally" - ) + logger.warning("`dask_client` not set. Your pipeline will run locally") result = result.compute(scheduler="single-threaded") - # Check if there's a score writer hooked in + # Check if there's a score writer hooked in if hasattr(pipeline.biometric_algorithm, "score_writer"): - pipeline.biometric_algorithm.score_writer.concatenate_write_scores(result, score_file_name) + pipeline.biometric_algorithm.score_writer.concatenate_write_scores( + result, score_file_name + ) else: with open(score_file_name, "w") as f: # Flatting out the list