You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 14, 2021. It is now read-only.
For example, given this file structure:
my_ns_package/subpackage/ init.py
main.py
other.py
I get errors in main.py when trying to import symbols from my_ns_package.subpackage.other ( "Imported symbol named "my_ns_package" has not been found.")
my project uses implicit namespace packages ( https://www.python.org/dev/peps/pep-0420/ ), which source trail does not seem to recognize.
For example, given this file structure:
my_ns_package/subpackage/
init.py
main.py
other.py
I get errors in main.py when trying to import symbols from my_ns_package.subpackage.other ( "Imported symbol named "my_ns_package" has not been found.")
Is it something you plan to support?