前提・実現したいこと
okと打ったらボイスチャンネルが作成されるシステム
発生している問題・エラーメッセージ
RuntimeWarning: Enable tracemalloc to get the object allocation traceback
該当のソースコード
python
1@client.event 2async def create_channel(message, channel_name): 3 category_id = message.channel.category_id 4 category = message.guild.get_channel(category_id) 5 new_channel = await category.create_text_channel(name=channel_name) 6 return new_channel 7 8@client.event 9async def run(message): 10 await message.send('役職の確認ができたらokと打ってください') 11 if message.content.startswith('ok'): 12 new_channel = await create_channel(message, channel_name='話し合い') 13 14 text = f'{new_channel.mention} を作成しました' 15 await message.channel.send(text) 16
試したこと
公式リファレンスなどを少し読みました。
補足情報(FW/ツールのバージョンなど)
python 3.7.3
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/01/14 10:37
2021/01/14 10:41