Я сделал команду музыкального бота leave , чтобы убрать музыку / бота . Но выскакивает ошибка : Traceback (most recent call last):
File "/data/user/0/ru.iiec.pydroid3/files/accomp_files/iiec_run/iiec_run.py", line 31, in
start(fakepyfile,mainpyfile)
File "/data/user/0/ru.iiec.pydroid3/files/accomp_files/iiec_run/iiec_run.py", line 30, in start
exec(open(mainpyfile).read(), __main__.__dict__)
File "", line 127
async def leave(ctx):
^
SyntaxError: invalid syntax
[Program finished]
Вот сам код :
@bot.command(pass_context=True, brief=("Makes the bot leave your channel"), aliases=(['l', 'le', 'lea'])
async def leave(ctx):
channel = ctx.message.author.voice.channel
voice = get(bot.voice_clients, guild=ctx.guild)
if voice and voice.is_connected():
await voice.disconnect()
await ctx.send