Skip to content

Commit

Permalink
Merge pull request #4 from bendoyon/main
Browse files Browse the repository at this point in the history
fix ci
  • Loading branch information
bendoyon authored Sep 9, 2024
2 parents da35dc9 + 53be053 commit 1d71ca1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/guides/global-search.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ for resp in api_client.scroll(
resp_data: dict = resp.json()

fetched_pages += 1
num_results: int = len(resp_data.get("items"))
num_results: int = len(resp_data["items"])
print(f"Fetched page {fetched_pages} with {num_results} results...")

# Save the last "next" value.
Expand Down

0 comments on commit 1d71ca1

Please sign in to comment.