From 627ddf5cdafbc2a89d58b8a60deb6ca9323d8f53 Mon Sep 17 00:00:00 2001 From: lmoehlenbrock <120418910+lmoehlenbrock@users.noreply.github.com> Date: Thu, 9 Mar 2023 15:17:35 -0600 Subject: [PATCH] FIxed typo in Error message --- labelbox/schema/model_run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/labelbox/schema/model_run.py b/labelbox/schema/model_run.py index 6bf993a37..dd7370a4d 100644 --- a/labelbox/schema/model_run.py +++ b/labelbox/schema/model_run.py @@ -168,7 +168,7 @@ def _wait_until_done(self, status_fn, timeout_seconds=120, sleep_time=5): if res['status'] == 'COMPLETE': return True elif res['status'] == 'FAILED': - raise Exception(f"Jop failed. Details : {res['errorMessage']}") + raise Exception(f"Job failed. Details : {res['errorMessage']}") timeout_seconds -= sleep_time if timeout_seconds <= 0: raise TimeoutError(