Im making a discord bot that should be able to take a message from an someone and post it in another channel but this line of code keeps giving me an indent error no matter how forward or backward I move it
@client.command()
async def print(ctx, *args):
response = ""
for arg in args:
response = response + " " + arg
channel = client.get_channel(923900008158339102)<------ indentation error[enter image description here][1]
await channel.send(response)
here is a screenshot : https://i.stack.imgur.com/nem0m.png (the red ^ is the indentation error)