From the relevant django documentation section:
beatles.members.add(john, through_defaults={"date_joined": date(1960, 8, 1)})
It would be nice if django-autotyping could verify that date_joined belongs on the Membership model and that the value is the correct type.
From the relevant django documentation section:
It would be nice if django-autotyping could verify that
date_joinedbelongs on theMembershipmodel and that the value is the correct type.