Skip to content

Commit

Permalink
temp fix for #504
Browse files Browse the repository at this point in the history
  • Loading branch information
igorbrigadir committed Jul 3, 2021
1 parent 9928dd3 commit f1c8664
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion twarc/client2.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ def search_all(
until_id=None,
start_time=None,
end_time=None,
max_results=500,
max_results=100, # temp fix for #504
):
"""
Search Twitter for the given query in the full archive,
Expand Down
2 changes: 1 addition & 1 deletion twarc/command2.py
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ def search(

# default number of tweets per response 500 when not set otherwise
if max_results == 0:
max_results = 500
max_results = 100, # temp fix for #504
else:
if max_results == 0:
max_results = 100
Expand Down

0 comments on commit f1c8664

Please sign in to comment.