Skip to content

Commit

Permalink
fix: use correct argument for page_size (#52)
Browse files Browse the repository at this point in the history
  • Loading branch information
dannydeut authored Aug 12, 2024
1 parent f4eeb54 commit a6702a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tap_rest_api_msdk/streams.py
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ def get_new_paginator(self):
elif self.pagination_request_style == "simple_offset_paginator":
return SimpleOffsetPaginator(
start_value=self.pagination_initial_offset,
pagination_page_size=self.pagination_page_size,
page_size=self.pagination_page_size,
)
else:
self.logger.error(
Expand Down

0 comments on commit a6702a3

Please sign in to comment.