Update
This commit is contained in:
parent
56a7f9c602
commit
02b5137ec6
1 changed files with 5 additions and 2 deletions
|
@ -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))
|
Loading…
Reference in a new issue