We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b0b813a commit add0043Copy full SHA for add0043
scripts/insiders.py
@@ -26,7 +26,7 @@
26
def human_readable_amount(amount: int) -> str: # noqa: D103
27
str_amount = str(amount)
28
if len(str_amount) >= 4: # noqa: PLR2004
29
- return f"{str_amount[:len(str_amount)-3]},{str_amount[-3:]}"
+ return f"{str_amount[: len(str_amount) - 3]},{str_amount[-3:]}"
30
return str_amount
31
32
0 commit comments