mirror of
https://github.com/home-assistant/core.git
synced 2025-04-26 18:27:51 +00:00
6 lines
158 B
Python
6 lines
158 B
Python
"""Define typing helpers for SimpliSafe."""
|
|
from simplipy.system.v2 import SystemV2
|
|
from simplipy.system.v3 import SystemV3
|
|
|
|
SystemType = SystemV2 | SystemV3
|