1
0
Fork 0
mirror of synced 2024-06-02 10:34:43 +12:00

fix parser docstring

This commit is contained in:
Nick Sweeting 2020-08-18 09:20:05 -04:00
parent e29bfba053
commit 61ab952dab

View file

@ -30,7 +30,7 @@ class HrefParser(HTMLParser):
@enforce_types
def parse_generic_html_export(html_file: IO[str], root_url: Optional[str]=None, **_kwargs) -> Iterable[Link]:
"""Parse Pocket-format bookmarks export files (produced by getpocket.com/export/)"""
"""Parse Generic HTML for href tags and use only the url (support for title coming later)"""
html_file.seek(0)
for line in html_file: