From b67fccd163827042e5fca43735f97a1dab39c1e3 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Thu, 20 Jul 2023 13:32:41 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- cubed/runtime/executors/lithops.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cubed/runtime/executors/lithops.py b/cubed/runtime/executors/lithops.py index f65e9708..b6d35508 100644 --- a/cubed/runtime/executors/lithops.py +++ b/cubed/runtime/executors/lithops.py @@ -193,7 +193,9 @@ def execute_dag( group_names = [] for name, node in gen: pipeline = node["pipeline"] - f = partial(run_func, func=pipeline.function, config=pipeline.config) + f = partial( + run_func, func=pipeline.function, config=pipeline.config + ) group_map_functions.append(f) group_map_iterdata.append(pipeline.mappable) group_names.append(name)