-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Closed
Labels
Description
Update VS Code Docs for Python for the June release.
Python VS Code extension will be adding the ability to sort imports as is possible in TypeScript and JavaScript, see here https://code.visualstudio.com/updates/v1_23#_javascript-and-typescript-organize-imports
To enable this in Python one needs to add the following setting into their user or workspace settings (settings.json):
"[python]": {
"editor.codeActionsOnSave": {
"source.organizeImports": true
}
}Feature supported added in PR microsoft/vscode-python#1926
Reactions are currently unavailable