Создаю дискорд бота на Discord.py скопировал команду 8ball но выдает ошибку на строке:
response = random.choice(responses)
Вот сам код:
@commands.command(name='8ball', description='Let the 8 Ball Predict!\n')
async def _8ball(self, ctx, question):
responses = ['As I see it, yes.',
'Yes.',
'Positive',
'From my point of view, yes',
'Convinced.',
'Most Likley.',
'Chances High',
'No.',
'Negative.',
'Not Convinced.',
'Perhaps.',
'Not Sure',
'Mayby',
'I cannot predict now.',
'Im to lazy to predict.',
'I am tired. *proceeds with sleeping*']
response = random.choice(responses)
embed=discord.Embed(title="The Magic 8 Ball has Spoken!")
embed.add_field(name='Question: ', value=f'{question}', inline=True)
embed.add_field(name='Answer: ', value=f'{response}', inline=False)
await ctx.send(embed=embed)
Вот ошибка..:
File "C:\Users\admin\Desktop\Phyton Discord Bot by hellik#9999\bot.py", line 145
response = random.choice(responses)
^
IndentationError: unexpected indent
Помогите если понимаете в чём проблема.. уже 3-ий день пытаюсь D: