fix(galaxy): pylint fixes
Some checks failed
Pylint / Pylint (push) Failing after 1m6s

This commit is contained in:
Seaswimmer 2023-09-24 16:59:45 -04:00
parent b614c6d443
commit e0ad1fc337
No known key found for this signature in database
GPG key ID: 5019678FD9CF50D8

View file

@ -101,7 +101,6 @@ class Galaxy(commands.Cog):
match = re.search(r'(?<=:)\d+(?=>)', input_string)
if match:
return int(match.group())
else:
return input_string
@autoreact.command(name="emoji")
@ -121,14 +120,14 @@ class Galaxy(commands.Cog):
emoji_obj = emoji_to_find
break
else:
await interaction.response.send_message(content=f"You're trying to set the autoreact emoji to an emoji I don't have access to!", ephemeral=True)
await interaction.response.send_message(content="You're trying to set the autoreact emoji to an emoji I don't have access to!", ephemeral=True)
return
await self.config.guild(interaction.guild).autoreact_emoji.set(emoji_obj.id)
embed=discord.Embed(color=await self.bot.get_embed_color(None), description=f"Autoreact's emoji has been set to {emoji_obj} ({emoji_obj.id}).")
await interaction.response.send_message(embed=embed)
else:
await self.config.guild(interaction.guild).autoreact_emoji.set('💀')
embed=discord.Embed(color=await self.bot.get_embed_color(None), description=f"Autoreact's emoji has been set to 💀.")
embed=discord.Embed(color=await self.bot.get_embed_color(None), description="Autoreact's emoji has been set to 💀.")
await interaction.response.send_message(embed=embed)
@autoreact.command(name="set")
@ -146,7 +145,7 @@ class Galaxy(commands.Cog):
async def autoreact_reset(self, interaction: discord.Interaction):
"""Resets Autoreact's target."""
await self.config.guild(interaction.guild).autoreact_target.set(0)
embed=discord.Embed(color=await self.bot.get_embed_color(None), description=f"Autoreact's target has been reset.")
embed=discord.Embed(color=await self.bot.get_embed_color(None), description="Autoreact's target has been reset.")
await interaction.response.send_message(embed=embed)
@commands.command()
@ -189,8 +188,8 @@ class Galaxy(commands.Cog):
}
try:
insurance_dict[f'{ship_class}']
except KeyError:
raise ValueError("Received value is not a valid ship class!")
except KeyError as error:
raise ValueError("Received value is not a valid ship class!") from error
if ship_class == "super_capital":
humanized_class = ship_class.replace("_", " ").title()
else:
@ -348,7 +347,7 @@ class Galaxy(commands.Cog):
@warehouse.error
@unix.error
async def faq_handler(self, ctx, error):
async def faq_handler(self, error):
"""Error Handler for Galaxy."""
if isinstance(error, discord.NotFound):
return