Skip to content

Commit 0e324d9

Browse files
fix: add explanatory comment for empty except clause
Co-Authored-By: sophie.cui@airbyte.io <sophie.cui@airbyte.io>
1 parent d5b06ee commit 0e324d9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

airbyte_cdk/sources/declarative/expanders/record_expander.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def copy_field(
3535
value = dpath.get(dict(parent_record), source_path)
3636
child_record[self.target_field] = value
3737
except KeyError:
38-
pass
38+
pass # Missing source fields in parent record are expected and intentionally skipped
3939

4040

4141
@dataclass

0 commit comments

Comments
 (0)