From 32aeb41ef1fc45efb18d75db3127be61ed28798a Mon Sep 17 00:00:00 2001 From: Matheus Moreno Date: Wed, 22 Dec 2021 15:26:34 -0300 Subject: [PATCH] Rename variable in start_run() Signed-off-by: Matheus Moreno --- mlflow/tracking/fluent.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mlflow/tracking/fluent.py b/mlflow/tracking/fluent.py index 8e0a7b45f2975..19a9346235219 100644 --- a/mlflow/tracking/fluent.py +++ b/mlflow/tracking/fluent.py @@ -285,9 +285,9 @@ def start_run( if run_name is not None: user_specified_tags[MLFLOW_RUN_NAME] = run_name - run_tags = context_registry.resolve_tags(user_specified_tags) + resolved_tags = context_registry.resolve_tags(user_specified_tags) - active_run_obj = client.create_run(experiment_id=exp_id_for_run, tags=run_tags) + active_run_obj = client.create_run(experiment_id=exp_id_for_run, tags=resolved_tags) _active_run_stack.append(ActiveRun(active_run_obj)) return _active_run_stack[-1]