Source `foo.py`: ```python import bar match 0: case 0: x: int = bar.f(0) ``` Command: ```shell pytype --disable import-error foo.py ``` Error: ``` File "foo.py", line 5, in <module>: Name '__annotations__' is not defined [name-error] ``` System info: ``` $ python --version Python 3.10.6 $ pytype --version 2023.05.24 ```