Skip to content

Commit 4191d10

Browse files
committed
format fix
1 parent 6bc4e33 commit 4191d10

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

airbyte_cdk/test/entrypoint_wrapper.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ def _run_command(
162162
args: List[str],
163163
expecting_exception: bool | None = None, # Deprecated, use `expected_outcome` instead.
164164
*,
165-
expected_outcome: ExpectedOutcome | None = None
165+
expected_outcome: ExpectedOutcome | None = None,
166166
) -> EntrypointOutput:
167167
"""Internal function to run a command with the AirbyteEntrypoint.
168168
@@ -171,7 +171,9 @@ def _run_command(
171171
Note: The `expecting_exception` arg is now deprecated in favor of the tri-state
172172
`expected_outcome` arg. The old argument is supported (for now) for backwards compatibility.
173173
"""
174-
expected_outcome = expected_outcome or ExpectedOutcome.from_expecting_exception_bool(expecting_exception)
174+
expected_outcome = expected_outcome or ExpectedOutcome.from_expecting_exception_bool(
175+
expecting_exception
176+
)
175177
log_capture_buffer = StringIO()
176178
stream_handler = logging.StreamHandler(log_capture_buffer)
177179
stream_handler.setLevel(logging.INFO)

0 commit comments

Comments
 (0)