This is the app structure.
app/
setup.py
package/
__init__.py
file.py
tests/
tests.py
...
I'm trying to import from file.py
into tests.py
but it's throwing ValueError: Attempted relative import in non-package
Hence my question is how to import to a non-package from a package in python?