mirror of
https://github.com/varun-r-mallya/py-libp2p.git
synced 2026-02-09 22:50:54 +00:00
run black
This commit is contained in:
@ -32,9 +32,7 @@ def decode_uvarint(buff: bytes, index: int) -> Tuple[int, int]:
|
||||
return result, index + 1
|
||||
|
||||
|
||||
async def decode_uvarint_from_stream(
|
||||
reader: asyncio.StreamReader, timeout: float
|
||||
) -> int:
|
||||
async def decode_uvarint_from_stream(reader: asyncio.StreamReader, timeout: float) -> int:
|
||||
shift = 0
|
||||
result = 0
|
||||
while True:
|
||||
|
||||
Reference in New Issue
Block a user