Skip to content

Commit d0bba86

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 68337f9 commit d0bba86

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/cloudevents/core/v1/exceptions.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ def __init__(self, errors: dict[str, list[BaseCloudEventException]]) -> None:
3232

3333
def __str__(self) -> str:
3434
error_messages = [
35-
f"{key}: {', '.join(str(e) for e in value)}" for key, value in self.errors.items()
35+
f"{key}: {', '.join(str(e) for e in value)}"
36+
for key, value in self.errors.items()
3637
]
3738
return f"{super().__str__()}: {', '.join(error_messages)}"
3839

0 commit comments

Comments
 (0)