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 os
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
class rolesummary(commands.Cog):
|
class threadsummary(commands.Cog):
|
||||||
|
|
||||||
def __init__(self, bot: commands.Bot):
|
def __init__(self, bot: commands.Bot):
|
||||||
self.bot = bot
|
self.bot = bot
|
||||||
|
@ -68,3 +68,6 @@ class rolesummary(commands.Cog):
|
||||||
message = message + f"<@{p.owner_id}>: {p.jump_url}\n"
|
message = message + f"<@{p.owner_id}>: {p.jump_url}\n"
|
||||||
await t.edit(message)
|
await t.edit(message)
|
||||||
return
|
return
|
||||||
|
|
||||||
|
def setup(bot: commands.Bot):
|
||||||
|
bot.add_cog(threadsummary(bot))
|
Loading…
Reference in a new issue