You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
print(f"Failed to validate the Coding Standards configuration file: {args.coding_standards_config_file} with the message: '{e.message}'!", file=sys.stderr)
162
+
sys.exit(1)
159
163
160
164
sarif=json.load(args.sarif_in)
161
-
validate_against_schema(sarif_schema, sarif)
165
+
try:
166
+
validate_against_schema(sarif_schema, sarif)
167
+
exceptjsonschema.ValidationErrorase:
168
+
print(f"Failed to validate the provided Sarif with the message: '{e.message}'!", file=sys.stderr)
0 commit comments