style: format code with black

Format code with black

This commit fixes the style issues introduced in 964fbcc according to the output
from Black.

Details: None
This commit is contained in:
deepsource-autofix[bot] 2023-09-12 10:33:30 +00:00 committed by GitHub
parent 964fbcc879
commit 1077d13803
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -102,7 +102,12 @@ class E621(commands.Cog):
embed.add_field( embed.add_field(
name="Tags", name="Tags",
value=( value=(
", ".join(["`"+general_tags[i]+"`" for i in range(min(len(general_tags), 20))]) ", ".join(
[
"`" + general_tags[i] + "`"
for i in range(min(len(general_tags), 20))
]
)
or "No tags provided." or "No tags provided."
), ),
inline=False, inline=False,