We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
BotClient
client = BotClient(dp) client.user = User(...) client.chat = Chat(...)
BotCommand
BotClient.send()
FOO_COMMAND = BotCommand("foo", "my awesome command for usefull actions") # Now client.send("/" + FOO_COMMAND.command) # Suggestion client.send(FOO_COMMAND)
The text was updated successfully, but these errors were encountered:
For history. Discussion about note 1 was here: https://t.me/aiogram_dialog/30299 and about note 2 was here: https://t.me/aiogram_dialog/30363
Sorry, something went wrong.
.reset_history
No branches or pull requests
BotClient
object. Now I use that workaround:BotCommand
objects intoBotClient.send()
The text was updated successfully, but these errors were encountered: