Fix reminders display in /reminders delete
This commit is contained in:
parent
047cf075f2
commit
ff71e93720
2 changed files with 2 additions and 2 deletions
|
@ -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]
|
||||
|
|
|
@ -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="⏰",
|
||||
)
|
||||
|
|
Loading…
Add table
Reference in a new issue