File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff 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 )
You can’t perform that action at this time.
0 commit comments