mirror of
https://github.com/Electric-Special/ha-core.git
synced 2026-03-21 17:05:34 +01:00
7 lines
164 B
Python
7 lines
164 B
Python
"""Define typing helpers for SimpliSafe."""
|
|
|
|
from simplipy.system.v2 import SystemV2
|
|
from simplipy.system.v3 import SystemV3
|
|
|
|
type SystemType = SystemV2 | SystemV3
|