Skip to content

Commit 62fd793

Browse files
authored
Merge pull request #2163 from effigies/fix/mypy
fix: Suppress known mypy error (python-jsonschema/jsonschema#1382)
2 parents 3afad67 + d289b91 commit 62fd793

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)