Docs: change format_on_save value from false to "off" (#38615)

Matheus created

Found this outdated piece of information in the docs while trying to
disable it myself, this PR simply changes `false` to `"off"`.

Release Notes:

- N/A

Change summary

docs/src/languages/python.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

docs/src/languages/python.md 🔗

@@ -198,7 +198,7 @@ You can disable format-on-save for Python files in your `settings.json`:
 {
   "languages": {
     "Python": {
-      "format_on_save": false
+      "format_on_save": "off"
     }
   }
 }