Skip to content

Commit

Permalink
Fix typo in paginator
Browse files Browse the repository at this point in the history
  • Loading branch information
tyler-mairose-sp committed Apr 24, 2024
1 parent 31dba9c commit 5b2d957
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sailpoint/paginator.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def paginate_search(search_api: SearchApi, search: Search, increment: int, limit
results = search_api.search_post(search, None, increment)
modified = modified + results

print(f'Recieved {len(results)} results')
print(f'Received {len(results)} results')

if len(results) < increment or (len(modified) >= max_limit and max_limit > 0):
results = modified
Expand Down

0 comments on commit 5b2d957

Please sign in to comment.