Reverting back to F strings for increased readability

pull/8/head
sgoudham 4 years ago
parent 2ee2540d3f
commit ced03ff969

@ -148,10 +148,10 @@ class Anime(Cog):
print(e) print(e)
# Send error message saying that the Waifu isn't recognised # Send error message saying that the Waifu isn't recognised
embed = Embed(description="Sorry! That Waifu Doesn't Exist!" embed = Embed(
"\nPlease Do **{}waifu list** To View The List Of Waifu's Available" description="Sorry! That Waifu Doesn't Exist!"
.format(ctx.prefix), f"\nPlease Do **{ctx.prefix}waifu list** To View The List Of Waifu's Available",
colour=enso_embedmod_colours) colour=enso_embedmod_colours)
await ctx.send(embed=embed) await ctx.send(embed=embed)
else: else:
@ -184,10 +184,10 @@ class Anime(Cog):
print(e) print(e)
# Send error message saying that the Husbando isn't recognised # Send error message saying that the Husbando isn't recognised
embed = Embed(description="Sorry! That Husbando Doesn't Exist!" embed = Embed(
"\nPlease Do **{}husbando list** To View The List Of Husbando's Available" description="Sorry! That Husbando Doesn't Exist!"
.format(ctx.prefix), f"\nPlease Do **{ctx.prefix}husbando list** To View The List Of Husbando's Available",
colour=enso_embedmod_colours) colour=enso_embedmod_colours)
await ctx.send(embed=embed) await ctx.send(embed=embed)
else: else:

Loading…
Cancel
Save