fix(bible): mark cog_unload as async

This commit is contained in:
cswimr 2025-01-26 00:46:21 +00:00
parent f233a7dec5
commit 8511b7b964
Signed by: cswimr
GPG key ID: 0EC431A8DA8F8087

View file

@ -39,7 +39,7 @@ class Bible(commands.Cog):
self.config.register_global(bible="de4e12af7f28f599-02")
self.config.register_user(bible=None)
def cog_unload(self):
async def cog_unload(self):
create_task(self.session.close())
def format_help_for_context(self, ctx: commands.Context) -> str: