Skip to content

Commit

Permalink
Add black formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
TSRBerry committed May 23, 2023
1 parent 86b5b9f commit 8f8502d
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions robocop_ng/cogs/meme.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,19 +56,19 @@ async def warm_member(self, ctx, user: Optional[discord.Member]):
f"({fahrenheit}°F, {kelvin}K)."
)

@commands.check(check_if_staff_or_ot)
@commands.command(hidden=True, name="lick")
async def licky(self, ctx, user: Optional[discord.Member]):
"""licks a user :?"""
if user is None and ctx.message.reference is None:
await ctx.send(f"{ctx.author.mention} licks their lips! 👅")
else:
if user is None:
user = (
await ctx.channel.fetch_message(ctx.message.reference.message_id)
).author
await ctx.send(f"{user.mention} has been licked! 👅")
@commands.check(check_if_staff_or_ot)
@commands.command(hidden=True, name="lick")
async def licky(self, ctx, user: Optional[discord.Member]):
"""licks a user :?"""
if user is None and ctx.message.reference is None:
await ctx.send(f"{ctx.author.mention} licks their lips! 👅")
else:
if user is None:
user = (
await ctx.channel.fetch_message(ctx.message.reference.message_id)
).author
await ctx.send(f"{user.mention} has been licked! 👅")

@commands.check(check_if_staff_or_ot)
@commands.command(hidden=True, name="chill", aliases=["cold"])
async def chill_member(self, ctx, user: Optional[discord.Member]):
Expand Down

0 comments on commit 8f8502d

Please sign in to comment.