Fix missing re-export in telegram_bot (#181920)

This commit is contained in:
epenet
2026-09-11 10:36:51 +03:00
committed by GitHub
parent 254a2b88d7
commit 77cae88e67
2 changed files with 8 additions and 0 deletions
+1
View File
@@ -118,6 +118,7 @@ components: &components
- homeassistant/components/sun/**
- homeassistant/components/system_health/**
- homeassistant/components/tag/**
- homeassistant/components/telegram_bot/**
- homeassistant/components/template/**
- homeassistant/components/timer/**
- homeassistant/components/trace/**
@@ -24,7 +24,14 @@ from .bot import (
TelegramNotificationService,
initialize_bot,
)
# The ATTR_* below are unused here, but re-exported for the telegram integration.
from .const import (
ATTR_CHAT_ID, # noqa: F401
ATTR_DISABLE_NOTIF, # noqa: F401
ATTR_DISABLE_WEB_PREV, # noqa: F401
ATTR_MESSAGE_TAG, # noqa: F401
ATTR_MESSAGE_THREAD_ID, # noqa: F401
ATTR_PARSER,
CONF_API_ENDPOINT,
CONF_CHAT_ID,