From 4c0d6133eadcc41e5655f822d95b77bd4410342b Mon Sep 17 00:00:00 2001 From: Aaron Zhang Date: Thu, 1 Aug 2024 17:27:42 -0700 Subject: [PATCH] typo fix --- cleanlab_studio/internal/api/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cleanlab_studio/internal/api/api.py b/cleanlab_studio/internal/api/api.py index ba14344d..063fa336 100644 --- a/cleanlab_studio/internal/api/api.py +++ b/cleanlab_studio/internal/api/api.py @@ -759,7 +759,7 @@ def list_enrichment_jobs(api_key: str, project_id: str) -> List[JSONDict]: return cast(List[JSONDict], res.json()) -def get_enrichement_job(api_key: str, job_id: str) -> JSONDict: +def get_enrichment_job(api_key: str, job_id: str) -> JSONDict: """Get enrichment job.""" check_uuid_well_formed(job_id, "job_id")