7 lines
190 B
Python
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]
|