Skip to content

Commit c26345e

Browse files
Fix remaining files with ruff formatting
Co-Authored-By: Aaron <AJ> Steers <[email protected]>
1 parent e79e901 commit c26345e

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

airbyte_cdk/connector_builder/test_reader/reader.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,9 @@ class TestReader:
6666
6767
"""
6868

69-
__test__: ClassVar[bool] = False # Prevent pytest from treating this as a test case, despite its name
69+
__test__: ClassVar[bool] = (
70+
False # Prevent pytest from treating this as a test case, despite its name
71+
)
7072

7173
logger = logging.getLogger("airbyte.connector-builder")
7274

unit_tests/sources/declarative/parsers/testing_components.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@ class TestingSomeComponent(DefaultErrorHandler):
2121
A basic test class with various field permutations used to test manifests with custom components
2222
"""
2323

24-
__test__: ClassVar[bool] = False # Prevent pytest from thinking that this is a test class, despite the name
24+
__test__: ClassVar[bool] = (
25+
False # Prevent pytest from thinking that this is a test class, despite the name
26+
)
2527

2628
subcomponent_field_with_hint: DpathExtractor = field(
2729
default_factory=lambda: DpathExtractor(field_path=[], config={}, parameters={})
@@ -39,7 +41,9 @@ class TestingCustomSubstreamPartitionRouter(SubstreamPartitionRouter):
3941
A test class based on a SubstreamPartitionRouter used for testing manifests that use custom components.
4042
"""
4143

42-
__test__: ClassVar[bool] = False # Prevent pytest from thinking that this is a test class, despite the name
44+
__test__: ClassVar[bool] = (
45+
False # Prevent pytest from thinking that this is a test class, despite the name
46+
)
4347

4448
custom_field: str
4549
custom_pagination_strategy: PaginationStrategy

0 commit comments

Comments
 (0)