File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/dandisets_linkml_status_tools/cmd_funcs Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -505,7 +505,7 @@ def pydantic_err_categorizer(
505
505
506
506
def jsonschema_err_categorizer (
507
507
err : JsonschemaValidationErrRep ,
508
- ) -> tuple [str , tuple , tuple ]:
508
+ ) -> tuple [tuple , tuple ]:
509
509
"""
510
510
Categorize a JSON schema validation error represented as a tuple
511
511
@@ -518,7 +518,7 @@ def jsonschema_err_categorizer(
518
518
"[*]" if isinstance (v , int ) else v for v in err_model .absolute_path
519
519
)
520
520
521
- return err_model .message , err_model . absolute_schema_path , categorized_absolute_path
521
+ return err_model .absolute_schema_path , categorized_absolute_path
522
522
523
523
524
524
def pydantic_err_rep (err : dict [str , Any ], path : Path ) -> PydanticValidationErrRep :
You can’t perform that action at this time.
0 commit comments