hass-core/homeassistant/components/simplisafe/typing.py
2021-12-02 09:07:14 -10:00

7 lines
190 B
Python

"""Define typing helpers for SimpliSafe."""
from typing import Union
from simplipy.system.v2 import SystemV2
from simplipy.system.v3 import SystemV3
SystemType = Union[SystemV2, SystemV3]