I'm developing a Python package with the following structure:
module_name
|- __init__.py
|- app.py
|- filesystem
- __init__.py
- extend_filesystem.py
The extend_filesystem.py contains the following function with the displayed signature:
When I try to import the module inside app.py VScode doesn't show any useful information (like parameters hints or function's description)
I installed the Pylance extension, I set it as server Language and set the Python's interpreter (Python 3.7.1 32-bit in my case) for the entire workspace
I'm using Vscode Version 1.54.2
Edit: within the same directory, the intellisense system shows all the information. So, how can I extend this behaviour in the entire package folder?


