From 0fbf5e96f449bf05ab8fc581fee8229e42436217 Mon Sep 17 00:00:00 2001 From: nex Date: Sat, 11 Nov 2023 20:15:26 +0000 Subject: [PATCH] Make model pull more verbose --- cogs/other.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cogs/other.py b/cogs/other.py index ad16430..b7fbbd7 100644 --- a/cogs/other.py +++ b/cogs/other.py @@ -1911,7 +1911,9 @@ class OtherCog(commands.Cog): if percent == 100 and completed != total: percent = round(completed / total * 100, 2) if not percent % 10 or percent >= 90.5: - await msg.edit(content=f"`{chunk['status']}` - {percent}%") + await msg.edit( + content=f"`{chunk['status']}` - {percent}% ({completed:,}/{total:,})" + ) else: await msg.edit(content=f"`{chunk['status']}`") await msg.edit(content=f"Downloaded model {model}.")