hass-core/homeassistant/components/simplisafe/typing.py
2024-05-17 14:42:21 +02:00

6 lines
164 B
Python

"""Define typing helpers for SimpliSafe."""
from simplipy.system.v2 import SystemV2
from simplipy.system.v3 import SystemV3
type SystemType = SystemV2 | SystemV3