【发布时间】:2020-12-20 14:17:46
【问题描述】:
我正在尝试制作一个不和谐的机器人来发送嘿!每天特定时间的特定频道。 但它给了我一个错误
import discord
import schedule
bot = commands.Bot(command_prefix = "^")
@bot.event
async def on_ready():
schedule.every().day.at("18:00").do(job)
while 1:
schedule.run_pending()
time.sleep(1)
async def job():
channel = bot.get_channel(72246xxxxxxxxx)
await channel.send("Hey!!")
RuntimeWarning: coroutine 'job' was never awaited
【问题讨论】:
标签: python-3.x discord discord.py