aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bot/exts/evergreen/recommend_game.py2
-rw-r--r--bot/exts/valentines/myvalenstate.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/bot/exts/evergreen/recommend_game.py b/bot/exts/evergreen/recommend_game.py
index 45108969..35d60128 100644
--- a/bot/exts/evergreen/recommend_game.py
+++ b/bot/exts/evergreen/recommend_game.py
@@ -41,7 +41,7 @@ class RecommendGame(commands.Cog):
if author is not None:
embed.set_author(name=author.name, icon_url=author.avatar_url)
embed.set_image(url=game["image"])
- embed.add_field(name="Recommendation: " + game["title"] + "\n" + game["link"], value=game["description"])
+ embed.add_field(name=f"Recommendation: {game['title']}\n{game['link']}", value=game["description"])
await ctx.send(embed=embed)
diff --git a/bot/exts/valentines/myvalenstate.py b/bot/exts/valentines/myvalenstate.py
index c699de94..52a61011 100644
--- a/bot/exts/valentines/myvalenstate.py
+++ b/bot/exts/valentines/myvalenstate.py
@@ -69,7 +69,7 @@ class MyValenstate(commands.Cog):
embed = discord.Embed(
title=f"Your Valenstate is {valenstate} \u2764",
- description=STATES[valenstate]['text'],
+ description=STATES[valenstate]["text"],
colour=Colours.pink
)
embed.add_field(name=embed_title, value=embed_text)