Skip to content

Commit 2d747de

Browse files
author
Roman
committed
ruff
1 parent 84be035 commit 2d747de

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

bittensor/core/async_subtensor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2733,7 +2733,7 @@ async def get_subnet_price(
27332733
api="SwapRuntimeApi",
27342734
method="current_alpha_price",
27352735
params=[netuid],
2736-
block_hash=block_hash
2736+
block_hash=block_hash,
27372737
)
27382738
price_rao = call.value
27392739
return Balance.from_rao(price_rao)

bittensor/core/subtensor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1926,7 +1926,7 @@ def get_subnet_price(
19261926
api="SwapRuntimeApi",
19271927
method="current_alpha_price",
19281928
params=[netuid],
1929-
block_hash=block_hash
1929+
block_hash=block_hash,
19301930
).value
19311931
return Balance.from_rao(price_rao)
19321932

0 commit comments

Comments
 (0)