Fix reminders display in /reminders delete

This commit is contained in:
Zeva Rose 2022-03-29 15:30:09 -06:00
parent 047cf075f2
commit ff71e93720
2 changed files with 2 additions and 2 deletions

View file

@ -19,7 +19,7 @@ repos:
- id: python-check-blanket-noqa
- repo: https://github.com/psf/black
rev: 22.1.0
rev: 22.3.0
hooks:
- id: black
args: [--line-length=100, --target-version=py310]

View file

@ -228,7 +228,7 @@ class RemindmeCog(Scale):
options = []
for reminder in reminders:
option = SelectOption(
label=f"<t:{int(reminder.remind_at.timestamp())}:F>",
label=f"{reminder.remind_at}",
value=str(reminder.id),
emoji="",
)