Make dataclasses in HA core slotted (#91208)

This commit is contained in:
rlippmann
2023-04-11 13:58:28 -04:00
committed by GitHub
parent eb63bc7967
commit 3a72054f93
15 changed files with 22 additions and 22 deletions

View File

@@ -32,7 +32,7 @@ class IssueSeverity(StrEnum):
WARNING = "warning"
@dataclasses.dataclass(frozen=True)
@dataclasses.dataclass(slots=True, frozen=True)
class IssueEntry:
"""Issue Registry Entry."""