basedmypy
basedmypy copied to clipboard
work properly `*args`/`**kwargs`
def f(*args: tuple[object, ...], **kwargs: dict[str, object]):
...
this is much nicer than the short form in 484