Skip to content

Commit 23ac759

Browse files
fix: apply ruff formatting to resolve CI check failure
Co-Authored-By: AJ Steers <[email protected]>
1 parent 9f5cc54 commit 23ac759

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

airbyte_cdk/test/standard_tests/docker_base.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -318,8 +318,7 @@ def test_docker_image_build_and_read(
318318
discovered_catalog: AirbyteCatalog = parsed_output.catalog.catalog
319319
except Exception as ex:
320320
raise AssertionError(
321-
f"Failed to load discovered catalog from discover command output. "
322-
f"Error: {ex!s}"
321+
f"Failed to load discovered catalog from discover command output. Error: {ex!s}"
323322
) from None
324323
if not discovered_catalog.streams:
325324
raise ValueError(
@@ -377,7 +376,11 @@ def test_docker_image_build_and_read(
377376
)
378377
if read_result.returncode != 0:
379378
error_messages = (
380-
[f"Error message: {error.trace.error.message}" for error in read_result.errors if error.trace and error.trace.error]
379+
[
380+
f"Error message: {error.trace.error.message}"
381+
for error in read_result.errors
382+
if error.trace and error.trace.error
383+
]
381384
if read_result.errors
382385
else ["No error messages found"]
383386
)

0 commit comments

Comments
 (0)