Development

This commit is contained in:
Matthew Grotke 2026-06-09 22:57:00 -04:00
parent 67b593bde3
commit 6503f26197

View file

@ -216,7 +216,7 @@ def all_time_blocked_display():
if not blocked:
return '-'
pct = f'{blocked / total * 100:.0f}' if total else '0'
return f'{int(blocked):,} blocked ({pct}%)'
return f'{int(blocked):,} ({pct}%)'
except Exception:
return '-'