Skip to content

Commit

Permalink
Merge pull request #2 from omkar-334/main
Browse files Browse the repository at this point in the history
Break condition updated
  • Loading branch information
BennyThadikaran authored May 29, 2024
2 parents a08bd8e + f85de92 commit 6c9ecea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/examples/get_all_announcements.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

ann.extend(res['Table'])

if len(ann) == total_count:
if len(ann) >= total_count:
break

# Next two line are optional and prints percent completion status
Expand Down

0 comments on commit 6c9ecea

Please sign in to comment.