Skip to content

Commit 864f194

Browse files
committed
Merge branch 'lazebnyi/add-lazy-read-to-simple-retriver' of github.com:airbytehq/airbyte-python-cdk into lazebnyi/add-lazy-read-to-simple-retriver
2 parents c903420 + 1a10bb6 commit 864f194

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

airbyte_cdk/sources/declarative/partition_routers/substream_partition_router.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,8 @@ def stream_slices(self) -> Iterable[StreamSlice]:
215215
if parent_stream_config.lazy_read_pointer:
216216
extracted_extra_fields = {
217217
"child_response": self._extract_child_response(
218-
parent_record, parent_stream_config.lazy_read_pointer # type: ignore[arg-type] # lazy_read_pointer type handeled in __post_init__ of parent_stream_config
218+
parent_record,
219+
parent_stream_config.lazy_read_pointer, # type: ignore[arg-type] # lazy_read_pointer type handeled in __post_init__ of parent_stream_config
219220
),
220221
**extracted_extra_fields,
221222
}

0 commit comments

Comments
 (0)