-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy path__init__.py
More file actions
33 lines (31 loc) · 828 Bytes
/
__init__.py
File metadata and controls
33 lines (31 loc) · 828 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
"""Typed Stage 5 promotion result models."""
from .cleanup import (
CLEANUP_STATUS_COMPLETED,
CLEANUP_STATUS_FAILED,
CLEANUP_STATUS_SKIPPED,
CLEANUP_STATUSES,
CleanupPromotionResult,
)
from .destinations import (
GcsPromotionResult,
HuggingFacePromotionResult,
)
from .full import FullPromotionResult
from .manifests import (
CompletionMarkerPromotionResult,
ReleaseManifestPromotionResult,
VersionManifestPromotionResult,
)
__all__ = [
"CLEANUP_STATUS_COMPLETED",
"CLEANUP_STATUS_FAILED",
"CLEANUP_STATUS_SKIPPED",
"CLEANUP_STATUSES",
"CleanupPromotionResult",
"CompletionMarkerPromotionResult",
"FullPromotionResult",
"GcsPromotionResult",
"HuggingFacePromotionResult",
"ReleaseManifestPromotionResult",
"VersionManifestPromotionResult",
]