We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4480416 commit a0abfe7Copy full SHA for a0abfe7
airbyte_cdk/cli/source_declarative_manifest/_run.py
@@ -255,7 +255,7 @@ def _parse_inputs_into_config_catalog_state(
255
def _parse_manifest_from_file(filepath: str) -> dict[str, Any] | None:
256
"""Extract and parse a manifest file specified in the args."""
257
try:
258
- with open(filepath, "r") as manifest_file:
+ with open(filepath, "r", encoding="utf-8") as manifest_file:
259
manifest_content = yaml.safe_load(manifest_file)
260
if not isinstance(manifest_content, dict):
261
raise ValueError(f"Manifest must be a dictionary, got {type(manifest_content)}")
0 commit comments