This is a follow-up for https://github.com/python/mypy/pull/21823. Most notably we get a false negative in situations like this: ```python class A: def f(self): # type: () -> None def g(x): # type: () -> None # Error not detected: signature has too few parameters pass ``` cc @JukkaL
This is a follow-up for #21823. Most notably we get a false negative in situations like this:
cc @JukkaL