From a01e19b2b91ecfee459129cdc5bbb34d66dd0f06 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Tue, 10 Sep 2024 06:32:48 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- tests/test_conda_function.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/test_conda_function.py b/tests/test_conda_function.py index 30aab54..ed75f19 100644 --- a/tests/test_conda_function.py +++ b/tests/test_conda_function.py @@ -5,11 +5,14 @@ from conda_subprocess.decorator import conda from executorlib.shared.executor import cloudpickle_register except ImportError: + def conda(prefix_name=None, prefix_path=None): def wrap_function(funct): def function_out(*args, **kwargs): return None + return function_out + return wrap_function