Why is the error coming up

an error occurs in this code he is in python
from turtle import *
@bot.command
async def черепашка(ctx):
color(“blue”)
shape(“turtle”)
speed (1)
pensize(5)
forward(50)
right(60)
forward(10)
right(60)
forward(10)
right(70)
forward(25)
await ctx.send(ctx)

error:
await ctx.send(ctx)
^
IndentationError: unexpected indent

I think the error is that the “черепашка” function name isn’t an English word,
Python doesn’t support that type of syntax.

1 Like

This is actually okay in python 3. But to help any further can you please post your code in a code block @Dilox? (It’s quite unreadable)

2 Likes

I have checked the Internet, And looks like your error is that there is too many spaces before the line

2 Likes

Otherwise known as an “indent” XD

2 Likes