core/homeassistant/components/simplisafe/typing.py

6 lines
158 B
Python
Raw Normal View History

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