**kwargs checked against wrong type with defaults or *args - Python mypy. def a(*args: str, **kw: int) -> None: b(**kw) b('', **kw) c(**kw) c('', ...
確定! 回上一頁