こんにちは、誰でも私を助けてくれますか? インポートを行うときにインポート エラーが発生しました。A から B への ForeignKey を本当に作成する必要があるため、B をインポートするまではすべて衝突していたと思います。
a/models.py
from b.models import B #there is the problem
Class A():
....
b = models.ForeignKey(B) # I really have to do this
b/models.py
from c.models import C
Class B():
....
c = models.ForeignKey(C)
c/models.py
from a.models import A
Class C():
a = models.ForeignKey(A)