You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would expect to get an error because get_tasks is missing an argument annotation and a return type annotation.
However, mypy --config-file /path/to/mypy.ini /path/to/rpc_server.py gives no errors. When I remove disallow_any = generics, I get the expected error. I also get the expected error if I simply do mypy --disallow-untyped-defs --disallow-any=generics—somehow it makes a difference that I use a config file.