Skip to content

Commit 61fa69b

Browse files
committed
add type: ignore
1 parent 00b5574 commit 61fa69b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/conftest.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,14 +104,14 @@ def get_job(self, job_id: str = fastapi.Path(...)) -> models.StatusInfo:
104104
)
105105
return status_info
106106

107-
def get_job_results( # type: ignore
107+
def get_job_results(
108108
self,
109109
job_id: str = fastapi.Path(...),
110110
) -> models.Results:
111111
results = {
112112
"result": f"https://example.org/{job_id}-results.nc",
113113
}
114-
return results
114+
return results # type: ignore
115115

116116
def delete_job(self, job_id: str = fastapi.Path(...)) -> models.StatusInfo:
117117
status_info = models.StatusInfo(
@@ -205,7 +205,7 @@ def get_job_results( # type: ignore
205205
results = {
206206
"result": f"https://example.org/{job_id}-results.nc",
207207
}
208-
return results
208+
return results # type: ignore
209209

210210
def delete_job(self, job_id: str = fastapi.Path(...)) -> StatusInfo:
211211
status_info = StatusInfo(

0 commit comments

Comments
 (0)