VSCode autocompletion for Django

Hi Folks!
I don’t know if it’s a shortcut or some setting in VSCode and I really couldn’t find any answer on google…
Does anyone know how to get the “extended autocomplete” that Mosh uses in the course?
Example - Django pt2 / Advanced API Concepts / 7-Routers (7:18) - when I use autocomplete, I get:

“def destroy (self, request)”

and when Mosh does, he gets:

"def destroy (self, request, * args, ** kwargs):
return super (). destroy (request, * args, ** kwargs) "

He uses this option from time to time and in my opinion is quite useful, but I have no idea how to get it working. I’d appreciate a tip.