diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 2e3b3a18..e3f6b1a8 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -20,14 +20,10 @@ "editor.formatOnSave": true, "editor.formatOnType": true, "python.formatting.provider": "black", - "python.testing.pytestArgs": [ - "tests" - ], + "python.testing.pytestArgs": ["tests"], "python.testing.pytestEnabled": true, "python.testing.unittestEnabled": false, - "pylint.args": [ - - ], + "pylint.args": [], "files.trimTrailingWhitespace": true }, // Add the IDs of extensions you want installed when the container is created. @@ -42,7 +38,6 @@ ] } }, - "remoteUser": "root", - "containerUser": "vscode", - "postAttachCommand": ["pip3 install --user -r requirements.txt"] -} \ No newline at end of file + "remoteUser": "vscode", + "postAttachCommand": "pip3 install -r requirements.txt" +}