Skip to content

Commit 86fd9a6

Browse files
author
octavia-squidington-iii
committed
Auto-fix lint and format issues
1 parent 7d3b146 commit 86fd9a6

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

airbyte_cdk/test/models/scenario.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
class EmptyStreamConfig(BaseModel):
2828
"""Configuration for streams that should be excluded from tests."""
29-
29+
3030
name: str
3131
bypass_reason: str
3232

airbyte_cdk/test/standard_tests/docker_base.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,9 @@ def test_docker_image_build_and_read(
338338

339339
if scenario.empty_streams:
340340
streams_to_exclude = {empty_stream.name for empty_stream in scenario.empty_streams}
341-
streams_list = [stream for stream in streams_list if stream not in streams_to_exclude]
341+
streams_list = [
342+
stream for stream in streams_list if stream not in streams_to_exclude
343+
]
342344

343345
configured_catalog: ConfiguredAirbyteCatalog = ConfiguredAirbyteCatalog(
344346
streams=[

0 commit comments

Comments
 (0)