stats: show top 10 addicts

master
q3k 2023-09-21 14:14:24 +02:00 committed by bitvend
parent 0d2a31f9f1
commit 78ea736beb
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ def hall_of_addicts():
.filter(Transaction.type == "purchase")
.having(balance < 0)
.order_by(balance.asc())
.limit(5)
.limit(10)
.all()
)