mirror of
https://github.com/home-assistant/core.git
synced 2025-06-26 16:07:08 +00:00

Co-authored-by: Maciej Bieniek <478555+bieniu@users.noreply.github.com> Co-authored-by: J. Nick Koston <nick@koston.org>
13 lines
243 B
Python
13 lines
243 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"]
|
|
|
|
UPDATE_INTERVAL = timedelta(seconds=30)
|