2020-01-06 17:06:16 +00:00
|
|
|
"""Constants for Brother integration."""
|
2021-04-29 14:59:31 +00:00
|
|
|
from __future__ import annotations
|
|
|
|
|
2021-05-03 13:10:20 +00:00
|
|
|
from typing import Final
|
2021-04-29 14:59:31 +00:00
|
|
|
|
2021-05-03 13:10:20 +00:00
|
|
|
DATA_CONFIG_ENTRY: Final = "config_entry"
|
2020-01-06 17:06:16 +00:00
|
|
|
|
2021-05-03 13:10:20 +00:00
|
|
|
DOMAIN: Final = "brother"
|
2020-01-06 17:06:16 +00:00
|
|
|
|
2021-05-03 13:10:20 +00:00
|
|
|
PRINTER_TYPES: Final = ["laser", "ink"]
|
2021-02-12 17:11:35 +00:00
|
|
|
|
2021-05-03 13:10:20 +00:00
|
|
|
SNMP: Final = "snmp"
|