diff --git a/streamrip/client/downloadable.py b/streamrip/client/downloadable.py index 95913b9..2685a1b 100644 --- a/streamrip/client/downloadable.py +++ b/streamrip/client/downloadable.py @@ -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]):