Update linting

This commit is contained in:
2022-04-02 19:11:27 +03:00
parent 0296f1cb48
commit c4baa74110

View File

@@ -35,7 +35,7 @@ async def convert(
converted_temp_filename = str(temp_uuid) + "." + format
async with aiofiles.open(temp_filename, "wb") as f:
while (content := await file.read(1024)):
while content := await file.read(1024):
if isinstance(content, str):
content = content.encode()