1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-07-11 01:10:37 +02:00

make **kwargs optional

This commit is contained in:
Kelly Brazil
2022-01-26 17:12:35 -08:00
parent e156b0db45
commit db7dc0634b
2 changed files with 2 additions and 2 deletions

View File

@ -146,7 +146,7 @@ def parse(
quiet: Optional[bool] = False,
raw: Optional[bool] = False,
ignore_exceptions: Optional[bool] = None,
**kwargs: Any
**kwargs: Optional[Any]
) -> Union[Dict, List[Dict], Iterator[Dict]]:
"""
Parse the string data using the supplied parser module.