Admin Site Lesson 15 - NameError: 'TaggedItem' is not defined

Hey folks, following along on lesson 15 for using generic relations. I’ve checked my code and replayed the video several times and can’t figure out what I’m missing. In the TagInline class I’m supposed to set my model to TaggedItem, but TaggedItem isn’t defined anywhere.

Anyone else have this issue? How did you solve it?

TaggedItem is defined in tags/models.py. You can check if you import TaggedItem in core/admin.py

from tags.models import TaggedItem