We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent baea0b2 commit 1939940Copy full SHA for 1939940
ogc_api_processes_fastapi/routers.py
@@ -320,6 +320,7 @@ def create_get_job_results_endpoint(
320
"/{job_id}/results",
321
response_model=models.Results,
322
response_model_exclude_unset=True,
323
+ response_model_exclude_none=True,
324
responses={
325
404: {"description": "Job not found", "model": models.Exception},
326
},
@@ -328,7 +329,6 @@ def create_get_job_results_endpoint(
328
329
def get_job_results(job_id: str) -> models.Results:
330
"""Show results of a job."""
331
response = client.get_job_results(job_id=job_id)
-
332
return response
333
334
0 commit comments