## 🐛 Bug report The type for DictComponentsType doesn't allow the `"_help": str` entry: ```python ComponentType = Union[Callable, Type] DictComponentsType = Dict[str, Union[ComponentType, "DictComponentsType"]] ``` ### To reproduce ```python from jsonargparse import CLI CLI({"something": {"_help": "Help"}}) ``` ```bash > python -m mypy . ...error: Dict entry 0 has incompatible type "str": "str"; expected "str": "Callable[..., Any] | type[Any] | DictComponentsType" ```