Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

docs: Fix imports in pagination guide #1492

Merged
merged 1 commit into from
Mar 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/guides/pagination-classes.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class MyStream(RESTStream):
```python
# New implementation

from singer_sdk.paginators import BaseHATEOASPaginator
from singer_sdk.pagination import BaseHATEOASPaginator

class MyPaginator(BaseHATEOASPaginator):
def get_next_url(self, response, previous_token):
Expand Down Expand Up @@ -81,7 +81,7 @@ class can be used to handle this pattern.
```python
# New implementation

from singer_sdk.paginators import BaseOffsetPaginator
from singer_sdk.pagination import BaseOffsetPaginator

class MyPaginator(BaseOffsetPaginator):
def has_more(self, response):
Expand Down
6 changes: 3 additions & 3 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.