Skip to content

Commit 06b183a

Browse files
author
Oleksandr Bazarnov
committed
formatted
1 parent 1d425ee commit 06b183a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

airbyte_cdk/sources/declarative/parsers/manifest_reference_resolver.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,9 +102,9 @@ class ManifestReferenceResolver:
102102
def preprocess_manifest(self, manifest: Mapping[str, Any]) -> Dict[str, Any]:
103103
"""
104104
:param manifest: incoming manifest that could have references to previously defined components
105-
:param reduce_commons: whether to deduplicate the commonalities in the manifest after pre-processing.
105+
:return: a new manifest with all references resolved
106106
"""
107-
return self._evaluate_node(manifest, manifest, set()) # type: ignore
107+
return self._evaluate_node(manifest, manifest, set()) # type: ignore[no-any-return]
108108

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

0 commit comments

Comments
 (0)