[Django]-Import parent module from submodule

0👍

Ahh… nevermind. It was a circular import. Solved it by switching

from apps.my_app import reports
...
reports.stuff()

to

import apps.my_app
...
apps.my_app.reports.stuff()

in models.py

Leave a comment