mirror of
https://github.com/home-assistant/core.git
synced 2025-11-08 02:19:31 +00:00
11 lines
225 B
Python
11 lines
225 B
Python
"""Helper functions for Telegram bot integration."""
|
|
|
|
from telegram import Bot
|
|
|
|
from .const import SIGNAL_UPDATE_EVENT
|
|
|
|
|
|
def signal(bot: Bot) -> str:
|
|
"""Define signal name."""
|
|
return f"{SIGNAL_UPDATE_EVENT}_{bot.id}"
|