Skip to content

Commit

Permalink
fix endtime limit
Browse files Browse the repository at this point in the history
  • Loading branch information
JoseRZapata committed May 8, 2021
1 parent ba3db4d commit c2d91b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pycoornet/crowdtangle.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def get_shares(self, urls, url_column='url', date_column='date', platforms=('fac
days = f"{remove_days} day"
endDate = startDate + pd.Timedelta(days)
else:
endDate = 'now'
endDate = None

url = urls.iloc[i, :].loc['url']
try:
Expand Down

0 comments on commit c2d91b0

Please sign in to comment.