I am trying to modify an embed from an existing message, How do I delete or remove the timestamp from the message
@commands.command()
async def remove_timestamp(self, ctx, msg: discord.MessageConverter):
embed = msg.embeds[0]
embed.timestamp = None #error raised here
await msg.edit(embed=embed)
Similar code worked when I tried to update color of the embeds or change the timestamp, but removing the timestamp raises an error