Skip to content

Commit 62ff4df

Browse files
author
maxime.c
committed
code review
1 parent 6439f74 commit 62ff4df

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

airbyte_cdk/sources/declarative/parsers/model_to_component_factory.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3330,15 +3330,14 @@ def _get_url() -> str:
33303330
),
33313331
)
33323332

3333-
cursor_used_for_stop_condition = stop_condition_cursor or None
33343333
paginator = (
33353334
self._create_component_from_model(
33363335
model=model.paginator,
33373336
config=config,
33383337
url_base=_get_url(),
33393338
extractor_model=model.record_selector.extractor,
33403339
decoder=decoder,
3341-
cursor_used_for_stop_condition=cursor_used_for_stop_condition,
3340+
cursor_used_for_stop_condition=stop_condition_cursor or None,
33423341
)
33433342
if model.paginator
33443343
else NoPagination(parameters={})

0 commit comments

Comments
 (0)