style: format certification tools

This commit is contained in:
2026-07-31 14:34:34 +02:00
parent f97daa35d0
commit 54c288bcd0
2 changed files with 3 additions and 9 deletions
+1 -3
View File
@@ -29,9 +29,7 @@ def main() -> int:
missing = sorted(required - available)
present = sorted(forbidden & available)
if missing or present:
raise SystemExit(
f"capability assertion failed: missing={missing}, forbidden={present}"
)
raise SystemExit(f"capability assertion failed: missing={missing}, forbidden={present}")
print(f"v2.0 capabilities certified: {', '.join(sorted(available))}")
return 0