fix(aurora): fixed some more errors

This commit is contained in:
Seaswimmer 2024-01-01 12:22:14 -05:00
parent d2e7d755e8
commit a9af61076e
Signed by untrusted user: cswimr
GPG key ID: 1EBC234EEDA901AE
2 changed files with 2 additions and 3 deletions

View file

@ -968,7 +968,7 @@ class Aurora(commands.Cog):
try:
await guild.unban(user, reason=f"Automatic unban from case #{moderation_id}")
embed = await embed_factory('message', self.bot.get_embed_color(None), guild, f'Automatic unban from case #{moderation_id}', 'unbanned')
embed = await embed_factory('message', self.bot.get_embed_color(None), guild=guild, reason=f'Automatic unban from case #{moderation_id}', moderation_type='unbanned')
try:
await user.send(embed=embed)
@ -997,7 +997,7 @@ class Aurora(commands.Cog):
role: discord.Role = guild.get_role(role_id)
if role is None:
raise discord.errors.NotFound
except [discord.errors.NotFound, discord.errors.Forbidden, discord.errors.HTTPException]:
except (discord.errors.NotFound, discord.errors.Forbidden, discord.errors.HTTPException):
continue
per_guild_completion_time = (time.time() - time_per_guild) * 1000

View file

@ -23,7 +23,6 @@ async def embed_factory(embed_type: str, color: Color, /, interaction: Interact
- guild
- reason
- moderation_type
- response
- moderator (optional)
- duration (optional)