So i am trying to make slash commands for a bot this is my code: ``` @client.event
async def on_ready():
await client.change_presence(activity=discord.Activity(type=discord.ActivityType.listening, name='To CodeFreak'))
print("Bot is now running")
try:
synced = await client.tree_sync()
print(f'{len(synced)} Commands')
except Exception as e:
print(e)
print('Worked')
@client.hybrid_command(description='Say hello to our bot!')
async def hello(ctx):
await ctx.send('Hi') ``` but it gave this error: File "main.py", line 15
try:
^
IndentationError: unindent does not match any outer indentation level