diff options
author | 2021-03-10 07:50:44 -0600 | |
---|---|---|
committer | 2021-03-10 07:50:44 -0600 | |
commit | 3939fa7e065a0ccab7e4aa0ece866ec99c016139 (patch) | |
tree | cd6ff2f09f9cd1d7e5bf3fdb42132f9411cf05b7 | |
parent | embed fix (diff) |
suggestion by @Xithrius
Co-authored-by: Shivansh-007 <[email protected]>
-rw-r--r-- | bot/exts/easter/earth_photos.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/bot/exts/easter/earth_photos.py b/bot/exts/easter/earth_photos.py index 89d37e11..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}) " - f"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) |