I recently installed Prettier on VSCode, and it was working all well for HTML, CSS, and JavaScript. However, when I switched to Python, Prettier stopped working. I tried installing Autopep8, and set it up in the settings.json file, but it still didn't work. I do have format on save checked, and when I save, it doesn't work. Can anyone help me with this? And btw, I do have Python installed. Here is my settings.json file.
"[python]": {
"editor.defaultFormatter": "ms-python.python"
}```