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 74dbe15 commit b537602Copy full SHA for b537602
airbyte_cdk/sources/declarative/retrievers/simple_retriever.py
@@ -668,8 +668,8 @@ def _read_pages(
668
if parent_record is None:
669
continue
670
671
- childs = self._extract_child_records(parent_record)
672
- response = self._create_response(childs)
+ child_records = self._extract_child_records(parent_record)
+ response = self._create_response(child_records)
673
674
yield from self._yield_records_with_pagination(
675
response,
0 commit comments