Skip to content

Commit b537602

Browse files
committed
Fix typo
1 parent 74dbe15 commit b537602

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

airbyte_cdk/sources/declarative/retrievers/simple_retriever.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -668,8 +668,8 @@ def _read_pages(
668668
if parent_record is None:
669669
continue
670670

671-
childs = self._extract_child_records(parent_record)
672-
response = self._create_response(childs)
671+
child_records = self._extract_child_records(parent_record)
672+
response = self._create_response(child_records)
673673

674674
yield from self._yield_records_with_pagination(
675675
response,

0 commit comments

Comments
 (0)