2020-01-06 17:06:16 +00:00
|
|
|
"""Constants for Brother integration."""
|
2024-03-08 13:51:32 +00:00
|
|
|
|
2021-04-29 14:59:31 +00:00
|
|
|
from __future__ import annotations
|
|
|
|
|
2024-05-04 14:29:08 +00:00
|
|
|
from datetime import timedelta
|
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
|
|
|
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
|
|
|
|
2024-05-04 14:29:08 +00:00
|
|
|
UPDATE_INTERVAL = timedelta(seconds=30)
|