From 60897a3bd929a5e12be9ce5615cf822b55621f29 Mon Sep 17 00:00:00 2001 From: JetRaidz <59957974+JetRaidz@users.noreply.github.com> Date: Tue, 19 Sep 2023 21:53:41 +1200 Subject: [PATCH] Fix typo in wards Fixed typo in `high_management` function --- src/wards.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wards.py b/src/wards.py index e66683a0..2ac290e1 100644 --- a/src/wards.py +++ b/src/wards.py @@ -21,7 +21,7 @@ async def sys_admin(bot: LionBot, userid: int): return userid in admins -async def high_management(bot: LionBot, member: discord.Member, guild=discord.Guild): +async def high_management(bot: LionBot, member: discord.Member, guild: discord.Guild): if not guild: return True if await sys_admin(bot, member.id):