From c6c2f274f008411be1d797094a855b401c1bd795 Mon Sep 17 00:00:00 2001 From: Nichlas Severinsen Date: Thu, 13 Feb 2020 21:48:20 +0000 Subject: [PATCH] Fix typo > how many long to sleep to > how many seconds to sleep --- requests_html.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requests_html.py b/requests_html.py index be5a5a4..050316d 100644 --- a/requests_html.py +++ b/requests_html.py @@ -606,7 +606,7 @@ class HTML(BaseParser): :param script: JavaScript to execute upon page load (optional). :param wait: The number of seconds to wait before loading the page, preventing timeouts (optional). :param scrolldown: Integer, if provided, of how many times to page down. - :param sleep: Integer, if provided, of how many long to sleep after initial render. + :param sleep: Integer, if provided, of how many seconds to sleep after initial render. :param reload: If ``False``, content will not be loaded from the browser, but will be provided from memory. :param keep_page: If ``True`` will allow you to interact with the browser page through ``r.html.page``.