8 lines
176 B
Python
8 lines
176 B
Python
"""Entity module for the Maintenance Supporter integration."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from .entity_base import MaintenanceEntity
|
|
|
|
__all__ = ["MaintenanceEntity"]
|