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 fe0d65a commit cd54c8cCopy full SHA for cd54c8c
tests/conftest.py
@@ -62,7 +62,6 @@ def post_process_execute(
62
process_id: str,
63
execution_content: models.Execute,
64
request: fastapi.Request,
65
- response: fastapi.Response,
66
) -> models.StatusInfo:
67
status_info = models.StatusInfo(
68
jobID=1, status=models.StatusCode.accepted, type=models.JobType.process
@@ -77,7 +76,7 @@ def get_jobs(self) -> List[models.StatusInfo]:
77
76
]
78
return jobs_list
79
80
- def get_job(self, job_id: str, response: fastapi.Response) -> models.StatusInfo:
+ def get_job(self, job_id: str) -> models.StatusInfo:
81
82
jobID=1, status=models.StatusCode.running, type=models.JobType.process
83
)
0 commit comments