From 93b287cfadce9aead157ce337414cd3c6c6fd67f Mon Sep 17 00:00:00 2001 From: Martin Abeleda Date: Tue, 16 Aug 2022 17:18:24 -0700 Subject: [PATCH] Remove reassignment of run function in public api --- wandb/apis/public.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wandb/apis/public.py b/wandb/apis/public.py index a484c2576f1..c15257e9ba3 100644 --- a/wandb/apis/public.py +++ b/wandb/apis/public.py @@ -839,9 +839,9 @@ def run(self, path=""): Returns: A `Run` object. """ - entity, project, run = self._parse_path(path) + entity, project, run_id = self._parse_path(path) if not self._runs.get(path): - self._runs[path] = Run(self.client, entity, project, run) + self._runs[path] = Run(self.client, entity, project, run_id) return self._runs[path] def queued_run(