Thinh Nguyen Phuoc
Results
2
issues of
Thinh Nguyen Phuoc
### My code: ```python from django.dispatch import receiver from django.db.models.signals import post_save @receiver(post_save, sender=settings.AUTH_USER_MODEL) def post_save_func(sender, instance, **kwargs): ... pass ``` I don't use `**kwargs` in my function, but `**kwargs`...
https://github.com/justdjango/My_Dashboard/blob/883f8796865ecc353730341768770a8570c3a32f/news/views.py#L4