diff --git a/.vscode/settings.json b/.vscode/settings.json index fc98917..fa72d24 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -216,8 +216,12 @@ // Python formatter: PEP8 "[python]": { "editor.formatOnSave": true, - "editor.defaultFormatter": "ms-python.autopep8" + "editor.defaultFormatter": "ms-python.autopep8", + "editor.codeActionsOnSave": { + "source.organizeImports": true + } }, + "isort.args": ["--profile", "black"], // Python testing: PyTest "python.testing.pytestArgs": ["tests"],