diff options
| -rw-r--r-- | bot/seasons/evergreen/bookmark.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/seasons/evergreen/bookmark.py b/bot/seasons/evergreen/bookmark.py index bbe362aa..52d2d362 100644 --- a/bot/seasons/evergreen/bookmark.py +++ b/bot/seasons/evergreen/bookmark.py @@ -17,8 +17,8 @@ class Bookmark(commands.Cog): @commands.command(name="bookmark", aliases=("bm", "pin"))
async def bookmark(self, ctx: commands.Context,
- target_message: discord.Message, *,
- title: str = None) -> None:
+ target_message: discord.Message, *,
+ title: str = None) -> None:
"""Send you a link to the provided message in DM."""
log.info(f"{ctx.author} bookmarked {target_message.jump_url} with title {title}.")
|