Skip to content

Commit

Permalink
Fix devcontainer python path
Browse files Browse the repository at this point in the history
  • Loading branch information
ollo69 committed Oct 19, 2024
1 parent 1011b02 commit b267df2
Showing 1 changed file with 5 additions and 12 deletions.
17 changes: 5 additions & 12 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@
"name": "SmartThinQ Sensors Component",
"dockerFile": "../Dockerfile.dev",
"postCreateCommand": "scripts/setup",
"forwardPorts": [
8123
],
"forwardPorts": [8123],
"portsAttributes": {
"8123": {
"label": "Home Assistant",
Expand All @@ -26,10 +24,8 @@
"settings": {
"files.eol": "\n",
"editor.tabSize": 4,
"python.pythonPath": "/usr/bin/python3",
"python.testing.pytestArgs": [
"--no-cov"
],
"python.pythonPath": "/usr/local/bin/python",
"python.testing.pytestArgs": ["--no-cov"],
"python.analysis.autoSearchPaths": false,
"editor.formatOnPaste": false,
"editor.formatOnSave": true,
Expand All @@ -47,8 +43,5 @@
}
}
},
"remoteUser": "vscode",
"features": {
"rust": "latest"
}
}
"remoteUser": "vscode"
}

0 comments on commit b267df2

Please sign in to comment.