Skip to content

Commit 130a4ae

Browse files
committed
style: cut line back
1 parent 2cce54e commit 130a4ae

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

uniswap_sdk/_cli.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,9 @@ async def get_token_balance(token: str) -> Decimal:
173173
from ape.types import AddressType
174174

175175
token = Token.at(convert(token, AddressType))
176-
return token.balanceOf(account) * Decimal(f"1e-{token.decimals()}") # type: ignore[attr-defined]
176+
return token.balanceOf(account) * Decimal( # type: ignore[attr-defined]
177+
f"1e-{token.decimals()}" # type: ignore[attr-defined]
178+
)
177179

178180
@server.tool()
179181
async def get_price(ctx: Context, base: str, quote: str) -> Decimal:

0 commit comments

Comments
 (0)