Hello World i just started working on a discord bot.
My bot can answer and send gifs, so my next step is to embed gifs.
Repl says: IndentationError: unindent does not match any outer indentation level
Any Help would be apprechiated!
Here is my code:
Sorry if its very basic ;-;
Code:
@client.command(hug)
async def reyhugs(ctx):
embed = discord.Embed(
title=":x: rey hugs @user",
color=discord.Colour.purple()
)
embed.set_image(url="https://cdn.discordapp.com/attachments/821733999637561385/843251675275591720/steamuserimages-a.akamaihd.net.gif")
await ctx.send(embed=embed)