Skip to content

Commit c3b2f4d

Browse files
removed for now
1 parent 38b4be7 commit c3b2f4d

File tree

1 file changed

+0
-5
lines changed
  • packages/models-library/src/models_library/api_schemas_webserver

1 file changed

+0
-5
lines changed

packages/models-library/src/models_library/api_schemas_webserver/storage.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
from datetime import datetime
21
from pathlib import Path
32
from typing import Any
43

@@ -47,8 +46,6 @@ class StorageAsyncJobStatus(OutputSchema):
4746
job_id: AsyncJobId
4847
progress: ProgressReport
4948
done: bool
50-
started: datetime
51-
stopped: datetime | None
5249

5350
@classmethod
5451
def from_rpc_schema(
@@ -58,8 +55,6 @@ def from_rpc_schema(
5855
job_id=async_job_rpc_status.job_id,
5956
progress=async_job_rpc_status.progress,
6057
done=async_job_rpc_status.done,
61-
started=async_job_rpc_status.started,
62-
stopped=async_job_rpc_status.stopped,
6358
)
6459

6560

0 commit comments

Comments
 (0)