pylint fixes

This commit is contained in:
SeaswimmerTheFsh 2023-06-30 16:30:24 -04:00
parent 2c57d05abc
commit 065eb8e681
2 changed files with 5 additions and 3 deletions

View file

@ -5,4 +5,5 @@
missing-class-docstring,
line-too-long,
too-many-arguments,
too-many-branches
too-many-branches,
superfluous-parens

View file

@ -33,14 +33,15 @@ class Client(commands.CommandsClient):
embed = [CustomEmbed(description=f"## Message Deleted in {message.channel.mention}\n**Author:** {message.author.name}#{message.author.discriminator} ({message.author.id})\n**Content:** {message.content}", colour="#5d82d1"), CustomEmbed(description=f"## Message Deleted in {message.channel.mention}\n**Author:** {message.author.name}#{message.author.discriminator} ({message.author.id})\n**Content:** {truncated_content}\n\n*Message content is over the character limit.*", colour="#5d82d1")]
embed[0].set_footer(f"Message ID: {message.id}")
embed[1].set_footer(f"Message ID: {message.id}")
channel = self.get_channel(message_logging_channel)
try:
try:
await self.get_channel(message_logging_channel).send(embed=embed[0])
await channel.send(embed=embed[0])
except LookupError:
print("Message logging channel not found for server ID: " + message.server.id)
except(revolt.errors.HTTPError):
try:
await self.get_channel(message_logging_channel).send(embed=embed[1])
await channel.send(embed=embed[1])
except LookupError:
print("Message logging channel not found for server ID: " + message.server.id)
else: