Client = discord.client() TypeError: 'module' object is not callable
问题描述
为什么我的代码会出现 TypeError: 'module' object is not callable
?
Why I am I getting TypeError: 'module' object is not callable
with my code?
import discord
from discord.ext.commands import Bot
from discord.ext import commands
import asyncio
import time
Client = discord.Client()
client = commands.Bot(command_prefix = "?")
@client.event
async def on_ready():
print("Bot is online and connected to Discord")
@client.event
async def on_message(message):
if message.content == "cookie":
await client.send_message(message.channel, ":cookie:")
client.run("...")
完全错误:
错误:Client = discord.client() TypeError:模块"对象不可调用
Error: Client = discord.client() TypeError: 'module' object is not callable
解决方案
Client = discord.Client()
完全删除此行.您没有在任何地方使用 Client
,而 discord.ext.commands.Bot
是 discord.Client
的子类,因此您可以访问所有Client
属性通过 Bot
.
Remove this line entirely. You aren't using Client
anywhere, and discord.ext.commands.Bot
is a subclass of discord.Client
, so you can access all of the Client
attributes through Bot
.
相关文章