Skip to content

Commit

Permalink
fix: String literal issue fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
phoenixpereira committed Jul 23, 2024
1 parent 38a7add commit f0aa9a8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/commands/skullboard.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,9 @@ async def edit_or_send_skullboard_message(
format_type = str(message.stickers[0].format).split(".", maxsplit=1)[-1]

sticker_id = message.stickers[0].id
sticker_url = f"https://media.discordapp.net/stickers/{
sticker_id}.{format_type}"
sticker_url = (
f"https://media.discordapp.net/stickers/{sticker_id}.{format_type}"
)
embed.set_image(url=sticker_url)

if message.attachments:
Expand Down

0 comments on commit f0aa9a8

Please sign in to comment.