billing: float5 hotfix

This commit is contained in:
Hay1tsme 2023-08-21 01:53:27 -04:00
parent d8b0e2ea2a
commit d4ea3bc12a
1 changed files with 1 additions and 1 deletions

View File

@ -607,7 +607,7 @@ class float5:
@classmethod
def to_str(cls, f: float):
return f"%.{4 - int(math.log10(f))+1}f" % f
return f"%.{2 - int(math.log10(f))+1}f" % f
class BillingInfo:
def __init__(self, data: Dict) -> None: