mirror of
https://github.com/prowler-cloud/prowler.git
synced 2026-01-25 02:08:11 +00:00
fix(skills): formatting file (#9783)
This commit is contained in:
@@ -165,12 +165,14 @@ def validate_compliance_framework(json_path: str) -> dict:
|
||||
"automated_requirements": automated_count,
|
||||
"manual_requirements": manual_count,
|
||||
"unique_checks_referenced": len(all_checks),
|
||||
"checks_found_in_codebase": len(all_checks - (all_checks - existing_checks))
|
||||
if existing_checks
|
||||
else "N/A",
|
||||
"missing_checks": len(all_checks - existing_checks)
|
||||
if existing_checks
|
||||
else "N/A",
|
||||
"checks_found_in_codebase": (
|
||||
len(all_checks - (all_checks - existing_checks))
|
||||
if existing_checks
|
||||
else "N/A"
|
||||
),
|
||||
"missing_checks": (
|
||||
len(all_checks - existing_checks) if existing_checks else "N/A"
|
||||
),
|
||||
}
|
||||
|
||||
return results
|
||||
|
||||
Reference in New Issue
Block a user