Currently it does: ``` python user = UserModel._default_manager.create_superuser( 'admin', 'admin@example.com', 'password', **extra_fields) ``` But this doesn't work if you have an user model with no email or no username. Perhaps there's a better way to solve this?