import discord
import os
client = discord.Client()
@client.event
async def on_ready ():
print ('We have logged in as{0.user}'.format(client))
@cient.event
async def on_message(message):
if message.author == client.user:
return
if message.content.startswith('$hello'):
await message.channel.send('Hello!')
client.run(os.getemv('TOKEN'))
Here is the code please tell where is the syntax error cause I am a beginner