Skip to content

Commit 03f3360

Browse files
author
octavia-squidington-iii
committed
Auto-fix lint and format issues
1 parent fcfe697 commit 03f3360

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

airbyte_cdk/test/declarative/test_suites/declarative_sources.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,14 @@ def md5_checksum(file_path: Path) -> str:
1818
with open(file_path, "rb") as file:
1919
return md5(file.read()).hexdigest()
2020

21-
class DeclarativeSourceTestSuite(SourceTestSuiteBase):
2221

22+
class DeclarativeSourceTestSuite(SourceTestSuiteBase):
2323
manifest_path = Path("manifest.yaml")
2424
components_py_path: Path | None = None
2525

26-
def create_connector(self, connector_test: ConnectorTestScenario) -> ConcurrentDeclarativeSource:
26+
def create_connector(
27+
self, connector_test: ConnectorTestScenario
28+
) -> ConcurrentDeclarativeSource:
2729
config = connector_test.get_config_dict()
2830
# catalog = connector_test.get_catalog()
2931
# state = connector_test.get_state()

airbyte_cdk/test/fixtures/general.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
```
1010
"""
1111

12+
1213
@pytest.fixture
1314
def connector_test_dir():
1415
return Path(__file__).parent

0 commit comments

Comments
 (0)