fractal-server 2.14.0a7__py3-none-any.whl → 2.14.0a8__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,16 +0,0 @@
1
- from pydantic import BaseModel
2
- from pydantic import Field
3
-
4
- from .workflowtask import WorkflowTaskStatusTypeV2
5
-
6
-
7
- class StatusReadV2(BaseModel):
8
- """
9
- Response type for the
10
- `/project/{project_id}/status/` endpoint
11
- """
12
-
13
- status: dict[
14
- str,
15
- WorkflowTaskStatusTypeV2,
16
- ] = Field(default_factory=dict)