Эмбеды и их отправка
Хочу сделать так, чтобы при отправке команды send (title) (description) титул отправлялся не одним словом. Как это сделать?
async def send(ctx, title1, *, description1):
emb = discord.Embed(title=title1, description=description1, colour=discord.Color.greyple())
await ctx.channel.send(embed=emb)