Skip to content

Commit 1939940

Browse files
committed
minor
1 parent baea0b2 commit 1939940

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ogc_api_processes_fastapi/routers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,6 +320,7 @@ def create_get_job_results_endpoint(
320320
"/{job_id}/results",
321321
response_model=models.Results,
322322
response_model_exclude_unset=True,
323+
response_model_exclude_none=True,
323324
responses={
324325
404: {"description": "Job not found", "model": models.Exception},
325326
},
@@ -328,7 +329,6 @@ def create_get_job_results_endpoint(
328329
def get_job_results(job_id: str) -> models.Results:
329330
"""Show results of a job."""
330331
response = client.get_job_results(job_id=job_id)
331-
332332
return response
333333

334334

0 commit comments

Comments
 (0)