(self, py_input, strict: bool | None = None, context: Any = None)
| 68 | self.validator_type = validator_type |
| 69 | |
| 70 | def validate_python(self, py_input, strict: bool | None = None, context: Any = None): |
| 71 | return self.validator.validate_python(py_input, strict=strict, context=context) |
| 72 | |
| 73 | def validate_json(self, json_str: str, strict: bool | None = None, context: Any = None): |
| 74 | return self.validator.validate_json(json_str, strict=strict, context=context) |
no outgoing calls
no test coverage detected