mirror of
https://github.com/Fluffy-Bean/Lynxie.git
synced 2025-05-29 14:53:15 +00:00
Merge remote-tracking branch 'origin/main'
This commit is contained in:
commit
3ef74850a5
2 changed files with 9 additions and 1 deletions
|
@ -1,5 +1,8 @@
|
||||||
version = 1
|
version = 1
|
||||||
|
|
||||||
|
[[analyzers]]
|
||||||
|
name = "docker"
|
||||||
|
|
||||||
[[analyzers]]
|
[[analyzers]]
|
||||||
name = "python"
|
name = "python"
|
||||||
|
|
||||||
|
|
|
@ -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,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue