mirror of
https://github.com/Electric-Special/ha-core.git
synced 2026-03-28 11:05:40 +01: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}"
|