Discord.py Add embed Field without name attribute
问题 I want to show a Leaderboard (Place, Name, Level) in an embed TextBox. The thing is, that I HAVE TO put name='smth' in the embed.add_field function, otherwise it wont work. But if I do so, it looks like this: How can I delete these Titles? My current code is number = 0 for x in character_list: if number == 0: embed.add_field(name='Platz', value=x[0], inline=True) embed.add_field(name='Name', value=x[1], inline=True) embed.add_field(name='Level', value=x[2], inline=True) number = 1 else: embed