Skip to content

Commit b228857

Browse files
style: fix formatting issues
Co-Authored-By: Aaron <AJ> Steers <[email protected]>
1 parent 64610b9 commit b228857

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

airbyte_cdk/entrypoint.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,10 @@ def discover(
241241
self, source_spec: ConnectorSpecification, config: TConfig
242242
) -> Iterable[AirbyteMessage]:
243243
self.set_up_secret_filter(config, source_spec.connectionSpecification)
244-
if not hasattr(self.source, "check_config_during_discover") or not self.source.check_config_during_discover:
244+
if (
245+
not hasattr(self.source, "check_config_during_discover")
246+
or not self.source.check_config_during_discover
247+
):
245248
self.validate_connection(source_spec, config)
246249
catalog = self.source.discover(self.logger, config)
247250

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
@@ -65,7 +65,7 @@ def test_check_config_during_discover_without_dynamic_schema_loader():
6565
}
6666

6767
source = ManifestDeclarativeSource(source_config=source_config)
68-
68+
6969
assert source.check_config_during_discover is False
7070
assert source.check_config_against_spec is True
7171

0 commit comments

Comments
 (0)