From 088bf6b8dca7e12105c03104dda3488f0759f3ae Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Sat, 2 Mar 2024 19:34:30 -0500 Subject: [PATCH] fix(pterodactyl): use .items() to unpack dictionary values --- pterodactyl/pterodactyl.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pterodactyl/pterodactyl.py b/pterodactyl/pterodactyl.py index b926e54..d570bb9 100644 --- a/pterodactyl/pterodactyl.py +++ b/pterodactyl/pterodactyl.py @@ -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)