I want to automatically insert white space around '=' in a keyword argument,
eg. through a config option in "python.formatting.autopep8Args": [......]
in settings.json
.
The goal is to automatically fix the E225:missing whitespace around operator
.
For example, I want to transform Users.objects.get(id=userId)
to Users.objects.get(id = userId)
How can I achieve this?