Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions airbyte_cdk/test/entrypoint_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,11 @@ class AirbyteEntrypointException(Exception):
raise output.as_exception()
"""

message: str = ""

def __post_init__(self) -> None:
super().__init__(self.message)


class EntrypointOutput:
"""A class to encapsulate the output of an Airbyte connector's execution.
Expand Down
Loading