run black

This commit is contained in:
Chih Cheng Liang
2019-08-05 11:21:20 +08:00
parent 9e0a806218
commit 7a04ebb51f
7 changed files with 10 additions and 27 deletions

View File

@ -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: