<!-- ⚠️ If you do not respect this template, your issue will be closed --> <!-- ⚠️ Make sure to browse the opened and closed issues --> ### Information - **rustworkx version**: 0.12.1 - **Python version**: 3.10.9 - **Rust version**: Not installed, installed via [wheel](https://pypi.org/project/rustworkx/#files) - **Operating system**: Debian Buster ### What is the current behavior? VSCode is unable to parse the type of PyGraph, see below. <img width="404" alt="Screenshot 2023-03-14 at 07 49 48" src="https://user-images.githubusercontent.com/2721423/224918597-ebc8eb66-aa3c-4c32-a13f-aa1c7bdfe81c.png"> <img width="298" alt="image" src="https://user-images.githubusercontent.com/2721423/224918117-28268df4-cba4-4e5e-b0ef-34268f85d33e.png"> This makes it very difficult to write code, especially while getting used to a new API. Autocompletion works in iPython, and assumedly, the Jupyter Notebook (both use Jedi). ### What is the expected behavior? VSCode should identify the type of the graph ### Steps to reproduce the problem In VSCode: ```python import rustworkx graph = rustworkx.PyGraph() a = graph.add_node("A") ```