added microfix

This commit is contained in:
tema 2023-02-19 00:56:06 +02:00
parent 3d5a2eb1c7
commit d7ac9fe180
Signed by: tema
GPG Key ID: 21FDB6D162488F6F
2 changed files with 2 additions and 1 deletions

View File

@ -7,4 +7,4 @@ from keyboards.inline.timetable import timetable
@dp.message_handler(commands='timetable')
async def get_table(message: types.Message):
markup = timetable()
await bot.send_message(message.chat.id, "q", reply_markup=markup)
await bot.send_message(message.chat.id, "Выберите свою группу", reply_markup=markup)

View File

@ -6,5 +6,6 @@ async def set_commands(dp):
types.BotCommand("start", "получить список замен"),
types.BotCommand("help", "информация"),
types.BotCommand("link", "получить ссылку на файл"),
types.BotCommand('timetable', "Розклад"),
types.BotCommand("reload", "только для администрации"),
])