Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions src/vws/reports.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@


@beartype
@dataclass
@dataclass(frozen=True)
class DatabaseSummaryReport:
"""
A database summary report.
Expand Down Expand Up @@ -47,7 +47,7 @@ class TargetStatuses(Enum):


@beartype
@dataclass
@dataclass(frozen=True)
class TargetSummaryReport:
"""
A target summary report.
Expand All @@ -68,7 +68,7 @@ class TargetSummaryReport:


@beartype(conf=BeartypeConf(is_pep484_tower=True))
@dataclass
@dataclass(frozen=True)
class TargetRecord:
"""
A target record.
Expand All @@ -86,7 +86,7 @@ class TargetRecord:


@beartype
@dataclass
@dataclass(frozen=True)
class TargetData:
"""
The target data optionally included with a query match.
Expand All @@ -98,7 +98,7 @@ class TargetData:


@beartype
@dataclass
@dataclass(frozen=True)
class QueryResult:
"""
One query match result.
Expand All @@ -112,7 +112,7 @@ class QueryResult:


@beartype
@dataclass
@dataclass(frozen=True)
class TargetStatusAndRecord:
"""
The target status and a target record.
Expand Down
2 changes: 1 addition & 1 deletion src/vws/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from beartype import beartype


@dataclass
@dataclass(frozen=True)
@beartype
class Response:
"""
Expand Down