###したい事
Bot起動時に「test」という名前のチャンネルにメッセージ送信したい
###エラー内容
Python
1Ignoring exception in on_ready 2Traceback (most recent call last): 3 File "/data/user/0/ru.iiec.pydroid3/files/aarch64-linux-android/lib/python3.8/site-packages/discord/client.py", line 333, in _run_event 4 await coro(*args, **kwargs) 5 File "<string>", line 25, in on_ready 6 File "<string>", line 19, in greet 7AttributeError: 'NoneType' object has no attribute 'send'
###補足
Python3.8.3
###問題のコード
Python
1CHANNEL_NAME ='test' 2async def greet(): 3 channel = client.get_channel(CHANNEL_NAME) 4 await channel.send('starting') 5 6@client.event 7async def on_ready(): 8 await client.change_presence(status=discord.Status.online,activity=discord.Game('試験中')) 9 print('接続\n-----') 10 await greet()
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/12/12 07:21
2020/12/12 07:37
2020/12/12 07:38