Skip to content

Commit d1e580e

Browse files
stchabiSihem Tchabi
and
Sihem Tchabi
authored
fix(LAB-3223): Avoid getting ROTATION_JOB not existing error when getting assets with SDK (#1801)
Co-authored-by: Sihem Tchabi <[email protected]>
1 parent a1a6cec commit d1e580e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/kili/services/label_data_parsing/json_response.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def __init__(
8484

8585
# all job names in the json response should be in the json interface too
8686
for job_name in json_response:
87-
if job_name not in json_interface:
87+
if job_name not in json_interface and job_name not in IGNORED_JOBS:
8888
raise JobNotExistingError(job_name)
8989

9090
# define the list of job names to parse

0 commit comments

Comments
 (0)