From cd4904de1dc37db209586e5f16446e32d16be9e4 Mon Sep 17 00:00:00 2001 From: Jan Rodak Date: Tue, 6 Feb 2024 17:24:46 +0100 Subject: [PATCH] Format long lines --- build-scripts/compile_all.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/build-scripts/compile_all.py b/build-scripts/compile_all.py index f1d99b73b499..a6e6a0145d92 100644 --- a/build-scripts/compile_all.py +++ b/build-scripts/compile_all.py @@ -98,8 +98,12 @@ def get_all_resolved_profiles_by_id( return profiles_by_id -def load_resolve_and_validate_profiles(env_yaml, profile_files, loader, controls_manager, product_cpes): - profiles_by_id = ssg.build_profile.make_name_to_profile_mapping(profile_files, env_yaml, product_cpes) +def load_resolve_and_validate_profiles( + env_yaml, profile_files, loader, controls_manager, product_cpes + ): + profiles_by_id = ssg.build_profile.make_name_to_profile_mapping( + profile_files, env_yaml, product_cpes + ) for p in profiles_by_id.values(): p.resolve(profiles_by_id, loader.all_rules, controls_manager)