From 76e17e6102ecdd45a6d995b4c00851bacd9f5ccc Mon Sep 17 00:00:00 2001 From: Anton Burnashev Date: Thu, 23 May 2024 17:16:04 +0200 Subject: [PATCH] Fix code snippet errors --- docs/website/docs/tutorial/grouping-resources.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/website/docs/tutorial/grouping-resources.md b/docs/website/docs/tutorial/grouping-resources.md index da27c4f95b..3ba95b7971 100644 --- a/docs/website/docs/tutorial/grouping-resources.md +++ b/docs/website/docs/tutorial/grouping-resources.md @@ -26,7 +26,7 @@ def get_comments( updated_at = dlt.sources.incremental("updated_at", initial_value="1970-01-01T00:00:00Z") ): for page in paginate( - "https://api.github.com/repos/dlt-hub/dlt/comments" + "https://api.github.com/repos/dlt-hub/dlt/comments", params={"per_page": 100} ): yield page @@ -55,7 +55,7 @@ def get_issues( updated_at = dlt.sources.incremental("updated_at", initial_value="1970-01-01T00:00:00Z") ): for page in paginate( - "https://api.github.com/repos/dlt-hub/dlt/issues" + "https://api.github.com/repos/dlt-hub/dlt/issues", params={ "since": updated_at.last_value, "per_page": 100, @@ -76,7 +76,7 @@ def get_comments( updated_at = dlt.sources.incremental("updated_at", initial_value="1970-01-01T00:00:00Z") ): for page in paginate( - "https://api.github.com/repos/dlt-hub/dlt/comments" + "https://api.github.com/repos/dlt-hub/dlt/comments", params={ "since": updated_at.last_value, "per_page": 100,