make all parsers accept arbitrary meta kwargs

This commit is contained in:
Nick Sweeting 2020-08-18 08:27:47 -04:00
parent 2e2b4f8150
commit a682a9c478
8 changed files with 8 additions and 8 deletions

View file

@ -14,7 +14,7 @@ from ..util import (
@enforce_types
def parse_netscape_html_export(html_file: IO[str]) -> Iterable[Link]:
def parse_netscape_html_export(html_file: IO[str], **_kwargs) -> Iterable[Link]:
"""Parse netscape-format bookmarks export files (produced by all browsers)"""
html_file.seek(0)