fix: Add rounding to bid display and strip batch inputs
All checks were successful
Build Docker / Build Image (push) Successful in 45s

This commit is contained in:
2025-01-28 10:56:24 +11:00
parent 4b7b9f991b
commit 2b6447fd12
3 changed files with 23 additions and 7 deletions

View File

@@ -189,6 +189,7 @@ def bidDomains(bids,domains, sortState=False):
bidValue = round(bidValue, 2)
blind = lockup - bidValue
bidValue = "{:,}".format(bidValue)
blind = round(blind, 2)
blind = "{:,}".format(blind)
bidDisplay = f'<b>{bidValue} HNS</b> + {blind} HNS blind'