Skip to content

Commit

Permalink
black
Browse files Browse the repository at this point in the history
  • Loading branch information
TrustyJAID committed Nov 6, 2023
1 parent df3481a commit 2afd750
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions redbot/cogs/mutes/mutes.py
Original file line number Diff line number Diff line change
Expand Up @@ -1173,11 +1173,7 @@ async def activemutes(self, ctx: commands.Context):
msgs = []
for page in pagify(msg):
if await ctx.embed_requested():
msgs.append(
discord.Embed(
description=page, colour=await ctx.embed_colour()
)
)
msgs.append(discord.Embed(description=page, colour=await ctx.embed_colour()))
else:
msgs.append(page)
await SimpleMenu(msgs).start(ctx)
Expand Down

0 comments on commit 2afd750

Please sign in to comment.