mirror of
https://github.com/sotam0316/docker-py-revanced.git
synced 2026-04-25 03:48:37 +09:00
🐛 Missing import
This commit is contained in:
+3
-1
@@ -5,6 +5,8 @@ from typing import Any, List
|
||||
from environs import Env
|
||||
from loguru import logger
|
||||
|
||||
from src.downloader import temp_folder
|
||||
|
||||
env = Env()
|
||||
|
||||
|
||||
@@ -86,7 +88,7 @@ class ArgParser(object):
|
||||
if is_experimental:
|
||||
logger.debug("Using experimental features")
|
||||
args.append("--experimental")
|
||||
args[1::2] = map(lambda i: self.patcher.temp_folder.joinpath(i), args[1::2])
|
||||
args[1::2] = map(lambda i: temp_folder.joinpath(i), args[1::2])
|
||||
|
||||
if self._PATCHES:
|
||||
args.extend(self._PATCHES)
|
||||
|
||||
Reference in New Issue
Block a user