Im new in Django and I can\'t figure out this error. Help please. It gave TypeError - save() got an unexpected keyword argument \'force_insert\'. I tested the code below and
You've overridden the save method, but you haven't preserved its signature. Yo need to accept the same arguments as the original method, and pass them in when calling super.