🎨 chore(*): run black to format the code

This commit is contained in:
2023-08-15 12:38:47 +02:00
parent 456e147785
commit 88d65e9f79
4 changed files with 12 additions and 11 deletions

View File

@@ -45,9 +45,7 @@ async def fetch_messages_history(channel: discord.TextChannel, limit, original_m
if len(messages) == limit:
break
else:
async for msg in channel.history(
limit=100, before=original_message
):
async for msg in channel.history(limit=100, before=original_message):
if not is_ignorable(msg.content):
messages.append(msg)
if len(messages) == limit: