Skip to content

Commit 151edc3

Browse files
author
maxi297
committed
code review
1 parent 3719e7c commit 151edc3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

airbyte_cdk/sources/declarative/yaml_declarative_source.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def __init__(
4040

4141
def _read_and_parse_yaml_file(self, path_to_yaml_file: str) -> ConnectionDefinition:
4242
try:
43-
# For testing purposes, we want to allow to just pass a file. However, this
43+
# For testing purposes, we want to allow to just pass a file
4444
with open(path_to_yaml_file, "r") as f:
4545
return yaml.safe_load(f) # type: ignore # we assume the yaml represents a ConnectionDefinition
4646
except FileNotFoundError:

0 commit comments

Comments
 (0)