Skip to content

Commit

Permalink
docs: Fix imports in pagination guide
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon committed Mar 9, 2023
1 parent 7a47de7 commit cd6e10a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
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.

0 comments on commit cd6e10a

Please sign in to comment.