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.
2 parents a155c65 + 1daef9a commit ee35520Copy full SHA for ee35520
src/vws/include_target_data.py
@@ -2,12 +2,13 @@
2
Tools for managing ``CloudRecoService.query``'s ``include_target_data``.
3
"""
4
5
-from enum import StrEnum, auto
+from enum import StrEnum, auto, unique
6
7
from beartype import beartype
8
9
10
@beartype
11
+@unique
12
class CloudRecoIncludeTargetData(StrEnum):
13
14
Options for the ``include_target_data`` parameter of
src/vws/reports.py
@@ -4,7 +4,7 @@
import datetime
from dataclasses import dataclass
-from enum import Enum
+from enum import Enum, unique
from beartype import BeartypeConf, beartype
@@ -33,6 +33,7 @@ class DatabaseSummaryReport:
33
34
35
36
37
class TargetStatuses(Enum):
38
"""Constants representing VWS target statuses.
39
0 commit comments