Bug 1724830 - Lint fix. a=lint-fix

This commit is contained in:
Butkovits Atila 2021-08-11 01:01:12 +03:00
Родитель e54462618c
Коммит 1213e1bc84
1 изменённых файлов: 9 добавлений и 5 удалений

Просмотреть файл

@ -1432,11 +1432,15 @@ class TreeMetadataEmitter(LoggingMixin):
if mozpath.split(base)[0] == "res":
has_resources = True
for f in files:
if var in (
"FINAL_TARGET_PP_FILES",
"OBJDIR_PP_FILES",
"LOCALIZED_PP_FILES",
) and not isinstance(f, SourcePath):
if (
var
in (
"FINAL_TARGET_PP_FILES",
"OBJDIR_PP_FILES",
"LOCALIZED_PP_FILES",
)
and not isinstance(f, SourcePath)
):
raise SandboxValidationError(
("Only source directory paths allowed in " + "%s: %s")
% (var, f),