The documentation on Typing Python Libraries uses generic aliases (e.g., typing.List) in various places, e.g. here: https://typing.python.org/en/latest/guides/libraries.html#wide-vs-narrow-types
As generic aliases are deprecated, I was wondering if it would make sense to clean up this section to use, e.g., list[str] instead of typing.List[str]?