fix(pterodactyl): use .items() to unpack dictionary values
Some checks failed
Actions / Lint Code (Ruff & Pylint) (push) Failing after 18s
Actions / Build Documentation (MkDocs) (push) Successful in 22s

This commit is contained in:
Seaswimmer 2024-03-02 19:34:30 -05:00
parent bf3f0f9782
commit 088bf6b8dc
Signed by: cswimr
GPG key ID: B8953EC01E5C4063

View file

@ -345,7 +345,7 @@ class Pterodactyl(commands.Cog):
leave_msg = await config.leave_msg()
mask_ip = await config.mask_ip()
api_endpoint = await config.api_endpoint()
regex_blacklist = await config.regex_blacklist()
regex_blacklist: dict = await config.regex_blacklist()
embed = discord.Embed(color = await ctx.embed_color(), title="Pterodactyl Configuration")
embed.description = f"""**Base URL:** {base_url}
**Server ID:** `{server_id}`
@ -368,7 +368,7 @@ class Pterodactyl(commands.Cog):
if not len(regex_blacklist) == 0:
regex_blacklist_embed = discord.Embed(color = await ctx.embed_color(), title="Regex Blacklist")
regex_string = ''
for name, regex in regex_blacklist:
for name, regex in regex_blacklist.items():
regex_string += f"**{name}**: {box(regex, 're')}\n"
regex_blacklist_embed.description = regex_string
await ctx.send(embed=regex_blacklist_embed)