mirror of
https://github.com/sotam0316/docker-py-revanced.git
synced 2026-04-25 03:48:37 +09:00
🎨 Use un necessary lambda
This commit is contained in:
+1
-1
@@ -96,7 +96,7 @@ class Parser(object):
|
|||||||
if app.experiment:
|
if app.experiment:
|
||||||
logger.debug("Using experimental features")
|
logger.debug("Using experimental features")
|
||||||
args.append("--experimental")
|
args.append("--experimental")
|
||||||
args[1::2] = map(lambda i: self.config.temp_folder.joinpath(i), args[1::2])
|
args[1::2] = map(self.config.temp_folder.joinpath, args[1::2])
|
||||||
if self.config.ci_test:
|
if self.config.ci_test:
|
||||||
self.exclude_all_patches()
|
self.exclude_all_patches()
|
||||||
if self._PATCHES:
|
if self._PATCHES:
|
||||||
|
|||||||
Reference in New Issue
Block a user