mirror of
https://github.com/sotam0316/docker-py-revanced.git
synced 2026-04-25 03:48:37 +09:00
🐛 Fixed missing variable
This commit is contained in:
+1
-1
@@ -18,8 +18,8 @@ class Downloader(object):
|
|||||||
self._CHUNK_SIZE = 2**21 * 5
|
self._CHUNK_SIZE = 2**21 * 5
|
||||||
self._QUEUE: PriorityQueue[Tuple[float, str]] = PriorityQueue()
|
self._QUEUE: PriorityQueue[Tuple[float, str]] = PriorityQueue()
|
||||||
self._QUEUE_LENGTH = 0
|
self._QUEUE_LENGTH = 0
|
||||||
self.download_revanced()
|
|
||||||
self.config = config
|
self.config = config
|
||||||
|
self.download_revanced()
|
||||||
|
|
||||||
def _download(self, url: str, file_name: str) -> None:
|
def _download(self, url: str, file_name: str) -> None:
|
||||||
logger.debug(f"Trying to download {file_name} from {url}")
|
logger.debug(f"Trying to download {file_name} from {url}")
|
||||||
|
|||||||
Reference in New Issue
Block a user