Omer Lubin
Omer Lubin
I am not sure that this is the best approach, but I got it to work by just adding a .gitignore writer: ```diff diff --git a/pyproject.toml b/pyproject.toml index a9febdbe8..eb503b600 100644...
Also, about the whole "this is only relevant to git" thing - I believe it's reasonable to assume everyone who has an `.egg-info` directory in their source tree excludes it...
Here's what I'm experiencing: ```py uc = unicorn.Uc(unicorn.UC_ARCH_X86, unicorn.UC_MODE_64) reveal_type(uc) # Revealed type is "unicorn.unicorn_py2.Uc"mypy(note) ``` Which aligns with what Mypy [claims](https://mypy.readthedocs.io/en/stable/common_issues.html): > Mypy supports the ability to perform Python...