I am trying to use mypy to check a Python 3 project. In the example below, I want mypy to flag the construction of the class MyClass
as an error, but it doesn't.
class MyClass:
def __init__(self, i:int) -> None:
pass
obj = MyClass(False)
Can anyone explain this, please? I.e. explain why mypy does not report an error?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…