style: format code with black

Format code with black

This commit fixes the style issues introduced in 960f452 according to the output
from Black.

Details: None
This commit is contained in:
deepsource-autofix[bot] 2023-09-11 18:38:34 +00:00 committed by GitHub
parent 960f452e4a
commit 6b1fee77f0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -72,7 +72,7 @@ class E621(commands.Cog):
embed.add_field( embed.add_field(
name="Score", name="Score",
value=f"^ {response['posts'][0]['score']['up']} | " value=f"^ {response['posts'][0]['score']['up']} | "
f"v {response['posts'][0]['score']['down']}", f"v {response['posts'][0]['score']['down']}",
) )
embed.add_field( embed.add_field(
name="Favorites", name="Favorites",
@ -86,13 +86,14 @@ class E621(commands.Cog):
) )
embed.add_field( embed.add_field(
name="Tags", name="Tags",
value=", ".join(response["posts"][0]["tags"]["general"]) or "No tags provided.", value=", ".join(response["posts"][0]["tags"]["general"])
or "No tags provided.",
inline=False, inline=False,
) )
embed.set_footer( embed.set_footer(
text=f"ID: {response['posts'][0]['id']} | " text=f"ID: {response['posts'][0]['id']} | "
f"Created: {response['posts'][0]['created_at']}" f"Created: {response['posts'][0]['created_at']}"
) )
embed.set_image(url=response["posts"][0]["file"]["url"]) embed.set_image(url=response["posts"][0]["file"]["url"])