🎨 Use un necessary lambda

This commit is contained in:
Nikhil Badyal
2023-08-05 22:04:43 +05:30
parent d3888f3fad
commit 2897a8f6c3
+1 -1
View File
@@ -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: