Bug 1715282 - Fix black py lint in test_toolchain_configure.py a=lint-fix

CLOSED TREE
This commit is contained in:
Alexandru Michis 2021-06-15 18:04:43 +03:00
Родитель 6562a5c751
Коммит 542a65a629
1 изменённых файлов: 4 добавлений и 5 удалений

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

@ -1755,11 +1755,10 @@ class RustTest(BaseConfigureTest):
)
# Same for the arm_target checks.
dep = sandbox._depends[sandbox["arm_target"]]
getattr(sandbox, "__value_for_depends")[(dep,)] = (
arm_target
or ReadOnlyNamespace(
arm_arch=7, thumb2=False, fpu="vfpv2", float_abi="softfp"
)
getattr(sandbox, "__value_for_depends")[
(dep,)
] = arm_target or ReadOnlyNamespace(
arm_arch=7, thumb2=False, fpu="vfpv2", float_abi="softfp"
)
return sandbox._value_for(sandbox["rust_target_triple"])