From 3b54e66df4e1a7ce6e05ec4639cb36a30cb2971b Mon Sep 17 00:00:00 2001 From: maclandrol Date: Mon, 18 Nov 2024 11:17:11 +0100 Subject: [PATCH] linting with black --- medchem/structural/_common.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/medchem/structural/_common.py b/medchem/structural/_common.py index 1a5135a..60f25bb 100644 --- a/medchem/structural/_common.py +++ b/medchem/structural/_common.py @@ -187,7 +187,9 @@ def __call__( scheduler = "threads" if batch_size: results = dm.parallelized_with_batches( - lambda batch: [functools.partial(self._evaluate, keep_details=keep_details)(mol) for mol in batch], + lambda batch: [ + functools.partial(self._evaluate, keep_details=keep_details)(mol) for mol in batch + ], mols, progress=progress, n_jobs=n_jobs,