dmitrykaramin
Results
3
comments of
dmitrykaramin
Probably you firstly should try to import User model not directly but from get_user_model() from django.contrib.auth
Try to avoid direct User import. Import from `django.contrib.auth.models` also not a good way.
```python from django.contrib.auth import get_user_model User = get_user_model() ```