Reverting back to F strings for increased readability

pull/8/head
sgoudham 4 years ago
parent ced03ff969
commit 92cc9b3c45

@ -205,7 +205,7 @@ class Anime(Cog):
# Tell the user to try the waifus in the array # Tell the user to try the waifus in the array
embed = Embed(description="Try The Waifu's Listed Below!" embed = Embed(description="Try The Waifu's Listed Below!"
"\n**{}**".format(waifu_list), f"\n**{waifu_list}**",
colour=enso_embedmod_colours) colour=enso_embedmod_colours)
await ctx.send(embed=embed) await ctx.send(embed=embed)
@ -218,7 +218,7 @@ class Anime(Cog):
# Tell the user to try the husbando's in the array # Tell the user to try the husbando's in the array
embed = Embed(description="Try The Husbando's Listed Below!" embed = Embed(description="Try The Husbando's Listed Below!"
"\n**{}**".format(husbando_list), f"\n**{husbando_list}**",
colour=enso_embedmod_colours) colour=enso_embedmod_colours)
await ctx.send(embed=embed) await ctx.send(embed=embed)

Loading…
Cancel
Save