Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
@client.command() async def close(ctx): category = discord.Guild.get_thread(1065333202127949925) times_start = datetime.datetime.today() emb_cl = discord.Embed(title='Уведомление - Closed', description='Канал будет закрыт через 30 секунд. Можете оценить ответ модератора от 1 до 5') emb_cl.set_footer(text=f'Дата: {times_start.strftime("%Y-%m-%d, %H:%M:%S")}') await ctx.send(embed=emb_cl) await asyncio.sleep(30) emb_cl2 = discord.Embed(title='Уведомление - Closed', description='Канал закрыт') await ctx.send(embed=emb_cl2) await ctx.channel.set_permissions(ctx.guild.default_role, read_messages=False) await ctx.channel.move(category=category)
discord.ext.commands.errors.CommandInvokeError: Command raised an exception: TypeError: Guild.get_thread() missing 1 required positional argument: 'thread_id'