I am using VS code to write python code.
What I would like to have when I hit return after every variable of the method is:

But after hitting return after the first argument the next line starts just under "def".
After looking for solutions in internet I read somewhere that adding this to settings.json would solve it:
"editor.autoIndent": true, "editor.indentAfterOpenBracket": "control" }
But this is not the case and the behavior remains the same.
How and what should be added in settings.json to get this behavior.

