example code, in py2.7
import MyType from unanalyzed
def foo(bar):
# type: (MyType) -> None
...
I would expect this to be an error: if mypy doesn't know what MyType is, it shouldn't be a valid type. Instead, it assumes it's Any which is way more permissive behavior than I expect.