From 03c16cb41a58811310e19cb2fb47b228aa0e8aac Mon Sep 17 00:00:00 2001 From: allegroai <> Date: Mon, 7 Mar 2022 23:45:59 +0200 Subject: [PATCH] Fix PipelineDecorator.debug_pipeline() --- clearml/automation/controller.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clearml/automation/controller.py b/clearml/automation/controller.py index 038ff86d..64febaee 100644 --- a/clearml/automation/controller.py +++ b/clearml/automation/controller.py @@ -2911,9 +2911,9 @@ class PipelineDecorator(PipelineController): def wrapper(*args, **kwargs): if cls._debug_execute_step_function: args = walk_nested_dict_tuple_list( - args, lambda x: v._remoteref() if isinstance(v, LazyEvalWrapper) else v) + args, lambda x: x._remoteref() if isinstance(x, LazyEvalWrapper) else x) kwargs = walk_nested_dict_tuple_list( - kwargs, lambda x: v._remoteref() if isinstance(v, LazyEvalWrapper) else v) + kwargs, lambda x: x._remoteref() if isinstance(x, LazyEvalWrapper) else x) func_return = []