"""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) SECTION_ADVANCED_SETTINGS = "advanced_settings" CONF_COMMUNITY = "community" DEFAULT_COMMUNITY = "public" DEFAULT_PORT = 161