mirror of
https://github.com/home-assistant/core.git
synced 2025-04-29 03:37:51 +00:00

* Bump `aionotion` to 2023.04.0 * Bump `aionotion` to 2023.04.2 to address imminent API change * Clean migration * Reduce blast area * Fix tests * Better naming
12 lines
255 B
Python
12 lines
255 B
Python
"""Define Notion model mixins."""
|
|
from dataclasses import dataclass
|
|
|
|
from aionotion.sensor.models import ListenerKind
|
|
|
|
|
|
@dataclass
|
|
class NotionEntityDescriptionMixin:
|
|
"""Define an description mixin Notion entities."""
|
|
|
|
listener_kind: ListenerKind
|