Skip to content

Commit 55eef33

Browse files
committed
types
1 parent f45cca3 commit 55eef33

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cads_processing_api_service/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ class StatusInfoMetadata(pydantic.BaseModel):
5858

5959

6060
class StatusInfo(ogc_api_processes_fastapi.models.StatusInfo):
61-
status: StatusCode
61+
status: StatusCode # type: ignore
6262
metadata: StatusInfoMetadata | None = None
6363

6464

cads_processing_api_service/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -530,7 +530,7 @@ def get_results_from_job(
530530
case "rejected":
531531
exc_title = "The job has been rejected"
532532
raise ogc_api_processes_fastapi.exceptions.JobResultsFailed(
533-
title=exc_title,
533+
title=exc_title, # type: ignore
534534
status_code=fastapi.status.HTTP_400_BAD_REQUEST,
535535
traceback=traceback,
536536
)

0 commit comments

Comments
 (0)