diff options
author | 2022-12-28 09:11:09 +0100 | |
---|---|---|
committer | 2023-02-19 14:42:20 +0100 | |
commit | a9bc84985291c04e006837eea67564b9cbc07d67 (patch) | |
tree | 084efdddaeb8ebe50f957cd0b4135e5a193ee57a | |
parent | move class var before ctor (diff) |
mark label as optional
-rw-r--r-- | bot/exts/utilities/bookmark.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/utilities/bookmark.py b/bot/exts/utilities/bookmark.py index c67d1baf..ee5d8645 100644 --- a/bot/exts/utilities/bookmark.py +++ b/bot/exts/utilities/bookmark.py @@ -31,7 +31,7 @@ class BookmarkTitleSelectionForm(discord.ui.Modal): """ bookmark_title = discord.ui.TextInput( - label="Choose a title for you bookmark", + label="Choose a title for you bookmark (optional)", placeholder="Type your bookmark title here", default="Bookmark", max_length=50, |