From e018090af61c8813a2eb45b300bd2ce4219915cd Mon Sep 17 00:00:00 2001 From: Funky Waddle Date: Sun, 29 Jun 2025 02:19:55 -0500 Subject: [PATCH] Modify Guild lib. Remove async from get_guild method --- libs/Guilds.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/Guilds.py b/libs/Guilds.py index 6e97c8e..c2fcc66 100644 --- a/libs/Guilds.py +++ b/libs/Guilds.py @@ -5,7 +5,7 @@ class Guilds: def __init__(self): pass - async def get_guild(self, bot: commands.Bot) -> discord.Guild: + def get_guild(self, bot: commands.Bot) -> discord.Guild: guild = None for g in bot.guilds: if bot.dev_mode and g.name == 'OgmaBotDev':