Skip to content

Commit d289b91

Browse files
committed
fix: Suppress known mypy error (python-jsonschema/jsonschema#1382)
1 parent 3afad67 commit d289b91

File tree

1 file changed

+1
-1
lines changed
  • tools/schemacode/src/bidsschematools

1 file changed

+1
-1
lines changed

tools/schemacode/src/bidsschematools/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,4 +148,4 @@ def jsonschema_validator(
148148

149149
validator_kwargs: ValidatorKwargs
150150
validator_kwargs = {"format_checker": validator_cls.FORMAT_CHECKER} if check_format else {}
151-
return validator_cls(schema, **validator_kwargs)
151+
return validator_cls(schema, **validator_kwargs) # type: ignore[call-arg]

0 commit comments

Comments
 (0)