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 38b4be7 commit c3b2f4dCopy full SHA for c3b2f4d
packages/models-library/src/models_library/api_schemas_webserver/storage.py
@@ -1,4 +1,3 @@
1
-from datetime import datetime
2
from pathlib import Path
3
from typing import Any
4
@@ -47,8 +46,6 @@ class StorageAsyncJobStatus(OutputSchema):
47
46
job_id: AsyncJobId
48
progress: ProgressReport
49
done: bool
50
- started: datetime
51
- stopped: datetime | None
52
53
@classmethod
54
def from_rpc_schema(
@@ -58,8 +55,6 @@ def from_rpc_schema(
58
55
job_id=async_job_rpc_status.job_id,
59
56
progress=async_job_rpc_status.progress,
60
57
done=async_job_rpc_status.done,
61
- started=async_job_rpc_status.started,
62
- stopped=async_job_rpc_status.stopped,
63
)
64
65
0 commit comments