This commit is contained in:
Administrator 2023-04-03 00:50:55 +03:00
parent e28031f8bb
commit 654dd69f39
2 changed files with 3 additions and 2 deletions

View File

@ -216,7 +216,8 @@ class Answer(BaseAnswer):
bot.send_message( bot.send_message(
user.chat_id, user.chat_id,
text, text,
reply_markup=main_keyboard() reply_markup=main_keyboard(),
parse_mode='Markdown'
) )
def handle_state_notify_type(self, message: Message, user: User): def handle_state_notify_type(self, message: Message, user: User):

View File

@ -75,7 +75,7 @@ class RUZ:
if last_date is not None: if last_date is not None:
ans += "=======================\n\n" ans += "=======================\n\n"
last_date = date last_date = date
ans += f"📅 {date}\n\n" ans += f"📅 *{date}*\n\n"
ans += f"📚 {lesson['discipline']}\n" ans += f"📚 {lesson['discipline']}\n"
ans += f"🏢 {lesson['building']}, {lesson['auditorium']}\n" ans += f"🏢 {lesson['building']}, {lesson['auditorium']}\n"
ans += f"🕑 {lesson['begin'].strftime('%H:%M')} - {lesson['end'].strftime('%H:%M')}\n" ans += f"🕑 {lesson['begin'].strftime('%H:%M')} - {lesson['end'].strftime('%H:%M')}\n"