Python TypeError:on#message()缺少1个必需的位置参数:';消息';

Python TypeError:on#message()缺少1个必需的位置参数:';消息';,python,discord.py,Python,Discord.py,您好,我试图用Discord.py创建一个机器人,并尝试实现我的代码,但标题中出现了错误。我还不太懂Python,而且我是个新手,所以我不知道是什么导致了这个错误。任何帮助都会很好,谢谢 import discord import os import requests import json import random from keep_alive import keep_alive import asyncio client = discord.Client() basura = [&q

您好,我试图用Discord.py创建一个机器人,并尝试实现我的代码,但标题中出现了错误。我还不太懂Python,而且我是个新手,所以我不知道是什么导致了这个错误。任何帮助都会很好,谢谢

import discord
import os
import requests
import json
import random
from keep_alive import keep_alive
import asyncio


client = discord.Client()
basura = ["rezero"]
verdad = [
    "es una mierda",
    "no debería existir",
    "VIVA K-ON",
]


def get_quote():
    response = requests.get("https://zenquotes.io/api/random")
    json_data = json.loads(response.text)
    quote = json_data[0]['q'] + " - " + json_data[0]['a']
    return (quote)


@client.event
async def on_ready():
  print ('We logged in as {0.user}'.format(client))

@client.event
async def on_message(self,message):
    if message.author.id == self.user.id:
        return

    if message.content.startswith('Hola'):
        await message.channel.send('Sup nerd')

    if message.content.startswith('Inspirame'):
        quote = get_quote()
        await message.channel.send(quote)
    if any(word in message.content for word in basura):
        await message.channel.send(random.choice(verdad))

    if message.content.startswith('^Guess'):
      await message.channel.send('Adivina un numero del 1 al 10')
      def is_correct(m):
        return message.content.author == message.author and m.content.isdigit()
      answer = random.randint(1,10)

      try:
        guess = await self.wait_for('message',check=is_correct,timeout=5.0)
      except asyncio.TimeoutError:
        return await message.channel.send('Se acabó el tiempo, la respuesta era {}.'.format(answer))
      if int(guess.content) == answer:
        await message.channel.send('Acertaste')
      else:
        await message.channel.send('Fallaste, la respuesta era {}.'.format(answer))

keep_alive()
client.run(os.getenv('TOKEN'))

在这里,给出完整的错误日志和准确的代码运行是很好的做法


此错误表示未为“on_message”函数提供其“message”参数。在这种情况下,我假定您在从对象提取此方法以使其成为独立函数时忘记删除“self”参数。

类定义之外的
self
参数实际上没有意义。那
self
应该指什么?解释如何使用消息上的
@on\u
装饰器。