Modify Guild lib. Remove async from get_guild method

This commit is contained in:
Funky Waddle 2025-06-29 02:19:55 -05:00
parent 1ce6b538ae
commit e018090af6

View file

@ -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':