File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ class JsonValidationError(ValidationError):
5353 @classmethod
5454 def _make_from_jsve (cls , e : 'JsonSchemaValidationError' ) -> 'JsonValidationError' :
5555 """⚠️ This is an internal API. It is not part of the public interface and may change without notice."""
56- return cls (e .message ) # TODO: shorten and more useful message?
56+ return cls (e .message ) # TODO: shorten and more useful message? maybe there is a massage formatter?
5757
5858
5959class _BaseJsonValidator (BaseSchemabasedValidator , ABC ):
Original file line number Diff line number Diff line change 4949
5050class XmlValidationError (ValidationError ):
5151 @classmethod
52- def _make_from_xle (cls , e : '_XmlLogEntry' ) -> 'XmlValidationError' :
52+ def __make_from_xle (cls , e : '_XmlLogEntry' ) -> 'XmlValidationError' :
5353 """⚠️ This is an internal API. It is not part of the public interface and may change without notice."""
54- return cls (e .message ) # TODO: shorten and more useful message?
54+ return cls (e .message ) # TODO: shorten and more useful message? maybe there is a massage formatter?
5555
5656
5757class _BaseXmlValidator (BaseSchemabasedValidator , ABC ):
You can’t perform that action at this time.
0 commit comments