We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
I noticed in utils.py in _retry_read_url this
utils.py
_retry_read_url
def _retry_read_url(url, retry_count, pause, name): """ Open url (and retry) """ for _ in range(retry_count): time.sleep(pause) ...
So an unnecessary pause occured from begining (first request)
we might have something like:
def _retry_read_url(url, retry_count, pause, name): """ Open url (and retry) """ for i in range(retry_count): if i != 0: time.sleep(pause) ...
The text was updated successfully, but these errors were encountered:
same issue in yahoo/actions.py
yahoo/actions.py
Sorry, something went wrong.
No branches or pull requests
Hi,
I noticed in
utils.py
in_retry_read_url
thisSo an unnecessary pause occured from begining (first request)
we might have something like:
The text was updated successfully, but these errors were encountered: