Fix comment

This commit is contained in:
Nathan Thomas 2024-03-06 13:23:33 -08:00
parent 6b06b2c030
commit bca23c6ced
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ class Downloadable(ABC):
session: aiohttp.ClientSession
url: str
extension: str
chunk_size = 2**17 # 1 MiB
chunk_size = 2**17
_size: Optional[int] = None
async def download(self, path: str, callback: Callable[[int], Any]):