Skip to content

Commit 3cb8faf

Browse files
author
octavia-squidington-iii
committed
Auto-fix lint and format issues
1 parent c3cbad8 commit 3cb8faf

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

airbyte_cdk/connector.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def load_optional_package_file(package: str, filename: str) -> Optional[bytes]:
3333
class BaseConnector(ABC, Generic[TConfig]):
3434
check_config_against_spec: bool = True
3535
"""Configure whether `check_config_against_spec_or_exit()` needs to be called."""
36-
36+
3737
check_config_during_discover: bool = False
3838
"""Determines whether config validation should be skipped during discovery.
3939

airbyte_cdk/sources/declarative/manifest_declarative_source.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ def __init__(
109109

110110
self._config = config or {}
111111
self._validate_source()
112-
112+
113113
self.check_config_during_discover = self._uses_dynamic_schema_loader()
114114

115115
@property

unit_tests/sources/declarative/test_manifest_declarative_source_dynamic_schema.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def test_check_config_during_discover_without_dynamic_schema_loader():
6868
}
6969

7070
source = ManifestDeclarativeSource(source_config=source_config)
71-
71+
7272
assert source.check_config_during_discover is False
7373
assert source.check_config_against_spec is True
7474

0 commit comments

Comments
 (0)