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 3719e7c commit 151edc3Copy full SHA for 151edc3
airbyte_cdk/sources/declarative/yaml_declarative_source.py
@@ -40,7 +40,7 @@ def __init__(
40
41
def _read_and_parse_yaml_file(self, path_to_yaml_file: str) -> ConnectionDefinition:
42
try:
43
- # For testing purposes, we want to allow to just pass a file. However, this
+ # For testing purposes, we want to allow to just pass a file
44
with open(path_to_yaml_file, "r") as f:
45
return yaml.safe_load(f) # type: ignore # we assume the yaml represents a ConnectionDefinition
46
except FileNotFoundError:
0 commit comments