9 lines
210 B
Python
9 lines
210 B
Python
"""Constants for APCUPSd component."""
|
|
|
|
from typing import Final
|
|
|
|
DOMAIN: Final = "apcupsd"
|
|
CONNECTION_TIMEOUT: int = 10
|
|
|
|
# Field name of last self test retrieved from apcupsd.
|
|
LAST_S_TEST: Final = "laststest"
|