1
0
mirror of https://github.com/home-assistant/core.git synced 2026-05-19 15:00:27 +01:00
Files
core/homeassistant/components/simplisafe/typing.py
2024-03-08 14:33:51 +01:00

7 lines
159 B
Python

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