Skip to content

Commit

Permalink
fix docstring, use image string
Browse files Browse the repository at this point in the history
  • Loading branch information
wizzdom committed Oct 29, 2024
1 parent 7cb906f commit fa7bb19
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/extensions/gerry.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ async def gerry_command(
hikari.User, arc.UserParams("The user to send a gerry to.")
] = None,
) -> None:
"""Send a user a random gerry!"""
"""Send a gerry!"""
if user is not None:
description = f"So tell me {user.mention}!"
else:
Expand All @@ -24,7 +24,7 @@ async def gerry_command(
description=description,
colour=0x5865F2,
)
embed = embed.set_image(hikari.files.URL(image))
embed = embed.set_image(image)

await ctx.respond(embed)

Expand Down

0 comments on commit fa7bb19

Please sign in to comment.