Skip to content

Commit a0abfe7

Browse files
ChristoGrabCopilot
andauthored
Update airbyte_cdk/cli/source_declarative_manifest/_run.py
Co-authored-by: Copilot <[email protected]>
1 parent 4480416 commit a0abfe7

File tree

1 file changed

+1
-1
lines changed
  • airbyte_cdk/cli/source_declarative_manifest

1 file changed

+1
-1
lines changed

airbyte_cdk/cli/source_declarative_manifest/_run.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ def _parse_inputs_into_config_catalog_state(
255255
def _parse_manifest_from_file(filepath: str) -> dict[str, Any] | None:
256256
"""Extract and parse a manifest file specified in the args."""
257257
try:
258-
with open(filepath, "r") as manifest_file:
258+
with open(filepath, "r", encoding="utf-8") as manifest_file:
259259
manifest_content = yaml.safe_load(manifest_file)
260260
if not isinstance(manifest_content, dict):
261261
raise ValueError(f"Manifest must be a dictionary, got {type(manifest_content)}")

0 commit comments

Comments
 (0)