Skip to content

Commit 96b1330

Browse files
committed
style: format validate JSON output changes
1 parent 9d9e038 commit 96b1330

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

concore_cli/commands/validate.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,9 @@ def _classify_message(message, bucket_name):
3838
return {"error_type": "missing_source_dir"}
3939
if message == "Node missing required 'id' attribute":
4040
return {"error_type": "missing_node_id"}
41-
if message.startswith("Node '") and message.endswith("contains unsafe shell characters"):
41+
if message.startswith("Node '") and message.endswith(
42+
"contains unsafe shell characters"
43+
):
4244
return {"error_type": "unsafe_node_label"}
4345
if message.startswith("Node '") and "missing format 'ID:filename'" in message:
4446
return {"error_type": "invalid_node_label_format"}

0 commit comments

Comments
 (0)