mirror of
https://github.com/home-assistant/core.git
synced 2025-11-09 02:49:40 +00:00
15 lines
279 B
Python
15 lines
279 B
Python
"""Constants for Brother integration."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from datetime import timedelta
|
|
from typing import Final
|
|
|
|
DOMAIN: Final = "brother"
|
|
|
|
PRINTER_TYPES: Final = ["laser", "ink"]
|
|
|
|
SNMP_ENGINE: Final = "snmp_engine"
|
|
|
|
UPDATE_INTERVAL = timedelta(seconds=30)
|