Support the `*` argument
Supported the *
argument to restrict positional argument (to use keyword argument), for example, as follows:
def any_func(a: int, *, b: int = 20) -> None:
...
Supported the *
argument to restrict positional argument (to use keyword argument), for example, as follows:
def any_func(a: int, *, b: int = 20) -> None:
...