Skip to content

Commit 138b607

Browse files
author
Oleksandr Bazarnov
committed
formatted"
1 parent 180af86 commit 138b607

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

airbyte_cdk/sources/declarative/parsers/manifest_deduplicator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def _get_declarative_component_schema() -> Dict[str, Any]:
8888
)
8989
if raw_component_schema is not None:
9090
declarative_component_schema = yaml.load(raw_component_schema, Loader=yaml.SafeLoader)
91-
return declarative_component_schema # type: ignore
91+
return declarative_component_schema # type: ignore
9292
else:
9393
raise RuntimeError(
9494
"Failed to read manifest component json schema required for deduplication"

airbyte_cdk/sources/declarative/parsers/manifest_reference_resolver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ def preprocess_manifest(
118118
return deduplicated_manifest
119119

120120
# return deduplicated_manifest
121-
return preprocessed_manifest # type: ignore
121+
return preprocessed_manifest # type: ignore
122122

123123
def _evaluate_node(self, node: Any, manifest: Mapping[str, Any], visited: Set[Any]) -> Any:
124124
if isinstance(node, dict):

0 commit comments

Comments
 (0)