Skip to content

Commit 319f269

Browse files
typecheck
1 parent c3b2f4d commit 319f269

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

services/storage/src/simcore_service_storage/api/rpc/_async_jobs.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
# pylint: disable=unused-argument
2-
from datetime import datetime
32

43
from fastapi import FastAPI
54
from models_library.api_schemas_rpc_async_jobs.async_jobs import (
@@ -46,8 +45,6 @@ async def get_status(
4645
job_id=job_id,
4746
progress=task_status.progress_report,
4847
done=False,
49-
started=datetime.now(), # TODO: retrieve that
50-
stopped=None, # TODO: retrieve that
5148
)
5249

5350

@@ -69,7 +66,7 @@ async def get_result(
6966

7067
@router.expose()
7168
async def list_jobs(
72-
app: FastAPI, filter_: str, job_id_data: AsyncJobNameData # TODO: implement filter
69+
app: FastAPI, filter_: str, job_id_data: AsyncJobNameData
7370
) -> list[AsyncJobGet]:
7471
assert app # nosec
7572

0 commit comments

Comments
 (0)