PR is somewhat WIP-ish but I needed some motivation to do OSS work again :)
https://htmlpreview.github.io/?https://github.com/SimonSchic...
I really need better generics support before ty becomes useful. Currently decorators just make all return types unknown. I need something this to work:
_F = TypeVar("_F", bound=Callable[..., Any]) def my_decorator(*args: str) -> Callable[[_F], _F]: ...
https://htmlpreview.github.io/?https://github.com/SimonSchic...