What is the right way in Python to import a module from a directory one level up? The directory is a Python package with all these modules and I have a sub directory with co
You can use relative imports:
from ..fruit import Fruit