We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5e6df9 commit 6e13f72Copy full SHA for 6e13f72
src/cloudevents/core/v1/exceptions.py
@@ -18,7 +18,7 @@ class CloudEventValidationError(Exception):
18
19
def __init__(self, errors: dict[str, list[str]]) -> None:
20
super().__init__("Validation errors occurred")
21
- self.errors = errors
+ self.errors: dict[str, list[str]] = errors
22
23
def __str__(self) -> str:
24
error_messages = [
0 commit comments