Aaaaa why?

This commit is contained in:
Egor Guslyancev 2023-12-06 17:04:41 -03:00
parent 3eff6c3ace
commit 4118265d00
GPG Key ID: D7E709AA465A55F9
1 changed files with 3 additions and 1 deletions

4
bot.py
View File

@ -1033,13 +1033,15 @@ def view_order(message):
+ '\n\n'
+ "*Почитаемые:*\n" + telebot.formatting.escape_markdown(
"\n".join([people[u]["surname"] + " " + people[u]["name"] for u in honor]))
+ '\n'
+ "*Виноватые:*\n" + telebot.formatting.escape_markdown(
"\n".join([people[u]["surname"] + " " + people[u]["name"] for u in force]))
+ '\n'
+ "*Больные:*\n" + telebot.formatting.escape_markdown(
"\n".join([ people[u]["surname"] + " " + people[u]["name"]
+ " до " + '.'.join(map(str,
(sicks[u][0].day, sicks[u][0].month, sicks[u][0].year)))
for u in force])))
for u in sicks])))
@bot.message_handler(commands=['begin'])
def begin_queue(message):