This repository was archived by the owner on Apr 14, 2022. It is now read-only.

Description
I am analyzing a project, that does not have embedded typings, and but there are separate typings for it in .pyi files.
How can I make PythonAnalyzer use those typings?
What I've tried so far:
- just parse and add typings to analysis queue
- put typings into a separate directory
Typings like Typings\mymodule\mysubmodule.pyi, and use PythonAnalysis.SetTypeStubPaths to Typings.
In both cases, when walking mymodule\mysubmodule.py file after analysis, and trying to GetValues(Expression, ...) I get the same values as if there's no matching typings file.