diff --git a/aiogram/types/bot_command.py b/aiogram/types/bot_command.py index a97238e5..39e38e4f 100644 --- a/aiogram/types/bot_command.py +++ b/aiogram/types/bot_command.py @@ -10,3 +10,6 @@ class BotCommand(base.TelegramObject): """ command: base.String = fields.Field() description: base.String = fields.Field() + + def __init__(self, command: base.String, description: base.String): + super(BotCommand, self).__init__(command=command, description=description) \ No newline at end of file