diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 045ddd0..a2e9a36 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -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] diff --git a/jarvis/cogs/remindme.py b/jarvis/cogs/remindme.py index 0a7a0c3..23b09cf 100644 --- a/jarvis/cogs/remindme.py +++ b/jarvis/cogs/remindme.py @@ -228,7 +228,7 @@ class RemindmeCog(Scale): options = [] for reminder in reminders: option = SelectOption( - label=f"", + label=f"{reminder.remind_at}", value=str(reminder.id), emoji="⏰", )