TypeError: create_user() got multiple values for keyword argument 'name'
问题 I'm trying to create custom authentication in Django where the identifier is an email, there is a required field called name and a password field. While creating the superuser, i'm getting an error. TypeError: create_user() got multiple values for keyword argument 'name' Here is my models.py from django.db import models from django.contrib.auth.models import User from django.conf import settings from django.contrib.auth.models import ( BaseUserManager, AbstractBaseUser ) class MyUserManager