Skip to content
Snippets Groups Projects
Commit 6eff9e89 authored by fmk17's avatar fmk17
Browse files

Add missing bullet points

parent 4959923f
No related branches found
No related tags found
No related merge requests found
......@@ -68,7 +68,7 @@ def cardapio(update: Update, context: CallbackContext) -> None:
if len(days):
body = '\n\n'.join(
f'<b>{day.date_raw}</b>\n' + '\n'.join(
f' <b>{menu.meal.value}</b>\n' + '\n'.join(f' {item}' for item in menu.items) for menu in day.menus
f' <b>{menu.meal.value}</b>\n' + '\n'.join(f' {item}' for item in menu.items) for menu in day.menus
) for day in days
)
else:
......@@ -124,7 +124,7 @@ def agendar(user_id):
'\n\n'.join(
f'<b>{LOCATION_TO_HEADER[location]}</b>\n' +
'\n'.join(
f' {time} · {meal.value} · {", ".join(DAY_WEEK_NUMBER_TO_STRING[day_week] for day_week in day_weeks)}'
f' {time} · {meal.value} · {", ".join(DAY_WEEK_NUMBER_TO_STRING[day_week] for day_week in day_weeks)}'
for (time, meal), day_weeks in day_week_by_time_meal.items()
)
for location, day_week_by_time_meal
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment