We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
BUG
import abc class A(abc.ABC): @abc.abstractmethod def f(self): pass # Cannot instantiate abstract class 'A' with abstract attribute 'f' a = A() # Cannot instantiate abstract class 'A' with abstract attribute 'f' al = lambda: A() # No warnings def af(): return A()
https://mypy-play.net/?mypy=latest&python=3.8&gist=fbc0513ec90bda028634ade70ff698e2
See comments above.
I expect the "Cannot instantiate abstract class [...]" warning in all three cases.
The text was updated successfully, but these errors were encountered:
You need to add type hints to af to make mypy check it:
af
def af() -> A: return A() # error
This behaviour is documented: https://mypy.readthedocs.io/en/stable/common_issues.html#no-errors-reported-for-obviously-wrong-code
Sorry, something went wrong.
No branches or pull requests
BUG
https://mypy-play.net/?mypy=latest&python=3.8&gist=fbc0513ec90bda028634ade70ff698e2
See comments above.
I expect the "Cannot instantiate abstract class [...]" warning in all three cases.
The text was updated successfully, but these errors were encountered: