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

fix type hint

This commit is contained in:
Kelly Brazil
2022-01-25 16:28:29 -08:00
parent 1caac750da
commit 6fad44e35d

View File

@ -252,7 +252,7 @@ def parser_info(parser_mod_name: str) -> Dict[str, Any]:
return info_dict
def all_parser_info() -> List[Dict[str, Any]:
def all_parser_info() -> List[Dict[str, Any]]:
return [parser_info(_cliname_to_modname(p)) for p in parsers]
def get_help(parser_mod_name: str) -> None: