This commit is contained in:
insert 2024-12-20 18:32:37 -05:00
parent 56a7f9c602
commit 02b5137ec6
Signed by: insert
GPG key ID: A70775C389ACF105

View file

@ -9,7 +9,7 @@ from urllib.parse import urlparse
import os
import sys
class rolesummary(commands.Cog):
class threadsummary(commands.Cog):
def __init__(self, bot: commands.Bot):
self.bot = bot
@ -67,4 +67,7 @@ class rolesummary(commands.Cog):
continue
message = message + f"<@{p.owner_id}>: {p.jump_url}\n"
await t.edit(message)
return
return
def setup(bot: commands.Bot):
bot.add_cog(threadsummary(bot))