From f390940a809d6c92e9ef5e8636c431845a50e27c Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Tue, 27 Feb 2018 20:16:32 -0500 Subject: [PATCH] learn more Signed-off-by: Kenneth Reitz --- requests_html.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/requests_html.py b/requests_html.py index 90775ee..00565d3 100644 --- a/requests_html.py +++ b/requests_html.py @@ -159,7 +159,9 @@ class BaseParser: @property def absolute_links(self) -> Set[str]: - """All found links on page, in `absolute form `_.""" + """All found links on page, in absolute form + (`learn more `_). + """ def gen(): for link in self.links: # Parse the link with stdlib.