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
|
- id: python-check-blanket-noqa
|
||||||
|
|
||||||
- repo: https://github.com/psf/black
|
- repo: https://github.com/psf/black
|
||||||
rev: 22.1.0
|
rev: 22.3.0
|
||||||
hooks:
|
hooks:
|
||||||
- id: black
|
- id: black
|
||||||
args: [--line-length=100, --target-version=py310]
|
args: [--line-length=100, --target-version=py310]
|
||||||
|
|
|
@ -228,7 +228,7 @@ class RemindmeCog(Scale):
|
||||||
options = []
|
options = []
|
||||||
for reminder in reminders:
|
for reminder in reminders:
|
||||||
option = SelectOption(
|
option = SelectOption(
|
||||||
label=f"<t:{int(reminder.remind_at.timestamp())}:F>",
|
label=f"{reminder.remind_at}",
|
||||||
value=str(reminder.id),
|
value=str(reminder.id),
|
||||||
emoji="⏰",
|
emoji="⏰",
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Reference in a new issue