We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9969236 commit 4642f18Copy full SHA for 4642f18
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