Skip to content

Commit 410571c

Browse files
fix: class AirbyteOutputException initialization (#665)
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
1 parent 14bef12 commit 410571c

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

airbyte_cdk/test/entrypoint_wrapper.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,11 @@ class AirbyteEntrypointException(Exception):
6464
raise output.as_exception()
6565
"""
6666

67+
message: str = ""
68+
69+
def __post_init__(self) -> None:
70+
super().__init__(self.message)
71+
6772

6873
class EntrypointOutput:
6974
"""A class to encapsulate the output of an Airbyte connector's execution.

0 commit comments

Comments
 (0)