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
Source:stackexchange.com