Remove boss from each bosses name
All checks were successful
Build and push / changes (push) Successful in 4s
Build and push / Lint-Python (push) Successful in 5s
Build and push / Build-and-Push-Docker (push) Successful in 19s
Build and push / sync-argocd-app (push) Successful in 3s

This commit is contained in:
Luke R 2024-11-02 12:11:18 -07:00
parent e490ed0cba
commit df3ac251d5

View File

@ -201,7 +201,9 @@ class Tarkov(commands.Cog):
for key, value in levels.items():
embed.add_field(
name=key,
value="\n".join(f"{k}: `{v*100}%`" for k, v in value.items()),
value="\n".join(f"{k}: `{v*100}%`" for k, v in value.items()).replace(
"boss", ""
),
inline=False,
)