每当我尝试运行导入了ordord的脚本时,REPL或任何其他解释器都会问我想要在剪贴板上显示什么。
这是我的代码:
import discord
from discord.ext import commands
from discord.ext.commands import Bot
import asyncio
Client = discord.Client()
bot = commands.Bot(command_prefix="cazo.")
@bot.event
async def on_ready():
print(bot.user.name + " er klar til at bolle jer allesammen!")
@bot.command()
async def hello():
await bot.say("Goddag, fede mongol.")
@bot.command(pass_context = True)
async def cazo(ctx):
await bot.say("Cazo er jo den mægtigste person der findes.")
bot.run("TOKEN")
当我运行它时,REPL会显示
What do you want on your clipboard?
但是,每当我按Enter键时,它就会继续,并且该bot可以正常工作。我该如何停止?