fix(aurora): fixed UnboundLocalError in configuration.embed._addrole

This commit is contained in:
Seaswimmer 2024-01-15 14:13:33 +00:00
parent 656823611c
commit a7dc1400c4
Signed by untrusted user: cswimr
GPG key ID: D74DDDDF420E13DF

View file

@ -82,12 +82,12 @@ async def _addrole(guild: Guild) -> str:
"""Generates a configuration menu field value for a guild's addrole whitelist.""" """Generates a configuration menu field value for a guild's addrole whitelist."""
whitelist = await config.guild(guild).addrole_roles() whitelist = await config.guild(guild).addrole_roles()
if blacklist: if whitelist:
blacklist = [guild.get_role(role).mention or error(f"`{role}` (Not Found)") for role in whitelist] whitelist = [guild.get_role(role).mention or error(f"`{role}` (Not Found)") for role in whitelist]
blacklist = '\n'.join(blacklist) whitelist = '\n'.join(whitelist)
else: else:
blacklist = warning("No roles are on the addrole whitelist!") whitelist = warning("No roles are on the addrole whitelist!")
return blacklist return whitelist
async def _immune(guild: Guild) -> str: async def _immune(guild: Guild) -> str:
"""Generates a configuration menu field value for a guild's immune roles.""" """Generates a configuration menu field value for a guild's immune roles."""