aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Xithrius <[email protected]>2021-03-10 11:30:01 -0800
committerGravatar GitHub <[email protected]>2021-03-10 11:30:01 -0800
commit1d3860d35cfa4a4f3ea056540b804dfc7d3bde65 (patch)
treeb9e4cea4aa0a5719c9d8552b74490e8ffbbbde83
parentMerge pull request #616 from python-discord/aoc-fixes (diff)
parentMerge branch 'master' into earth_photos (diff)
Merge pull request #621 from Kronifer/earth_photos
Embed fix in earth_photos
-rw-r--r--bot/exts/easter/earth_photos.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/bot/exts/easter/earth_photos.py b/bot/exts/easter/earth_photos.py
index 60e34b15..bf658391 100644
--- a/bot/exts/easter/earth_photos.py
+++ b/bot/exts/easter/earth_photos.py
@@ -47,8 +47,10 @@ class EarthPhotos(commands.Cog):
embed.set_image(url=embedlink)
embed.add_field(
name="Author",
- value=f"Photo by [{username}]({profile}{rf}) \
- on [Unsplash](https://unsplash.com{rf})."
+ value=(
+ f"Photo by [{username}]({profile}{rf}) "
+ f"on [Unsplash](https://unsplash.com{rf})."
+ )
)
await ctx.send(embed=embed)