mirror of
https://github.com/home-assistant/core.git
synced 2025-05-11 01:19:18 +00:00
8 lines
190 B
Python
8 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]
|