
Hi,
to show a python module in the intelli prompt, currently all parent folders (up to the search path) need to have a "__init__.py" file, which makes it a package.
But as we understand the current specification, this is no longer required. We also verified this with Visual Studio Code and the Python 3.9 interpreter. Both do not require the "__init__.py" file to show or use files in sub-folders.
Image the following file structure:
SubFolderA
- FileA
SubFolderB
- SubFolderB2
- FileB
FileC
If I open FileC, I can import "SubFolderA.FileA" or "SubFolderB.SubFolderB2.FileB".
Best regards, Tobias Lingemann.