From 6b1fee77f037c8ddde269b835e99d4436b532f2e Mon Sep 17 00:00:00 2001 From: "deepsource-autofix[bot]" <62050782+deepsource-autofix[bot]@users.noreply.github.com> Date: Mon, 11 Sep 2023 18:38:34 +0000 Subject: [PATCH] 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 --- lynxie/commands/e621.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lynxie/commands/e621.py b/lynxie/commands/e621.py index d9caa24..ce6f1a4 100644 --- a/lynxie/commands/e621.py +++ b/lynxie/commands/e621.py @@ -72,7 +72,7 @@ class E621(commands.Cog): embed.add_field( name="Score", value=f"^ {response['posts'][0]['score']['up']} | " - f"v {response['posts'][0]['score']['down']}", + f"v {response['posts'][0]['score']['down']}", ) embed.add_field( name="Favorites", @@ -86,13 +86,14 @@ class E621(commands.Cog): ) embed.add_field( 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, ) embed.set_footer( 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"])