Skip to content

Commit

Permalink
Updated sdk version and vscode config files
Browse files Browse the repository at this point in the history
  • Loading branch information
Nusnus committed Nov 5, 2020
1 parent 24f4492 commit 4c0048e
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
13 changes: 12 additions & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,18 @@
// Keeps Python from generating .pyc files (__pycache__)
"PYTHONDONTWRITEBYTECODE": "1"
}
// "cwd": "${fileDirname}"
},
{
"name": "Python: Current File",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"env": {
// Keeps Python from generating .pyc files (__pycache__)
"PYTHONDONTWRITEBYTECODE": "1"
},
"cwd": "${fileDirname}"
}
]
}
5 changes: 5 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@
"python.linting.pylintEnabled": true,
"editor.formatOnSave": true,
"python.formatting.provider": "yapf",
"autoDocstring.docstringFormat": "google",
"autoDocstring.quoteStyle": "\"\"\"",
"autoDocstring.generateDocstringOnEnter": true,
"autoDocstring.guessTypes": true,
"autoDocstring.startOnNewLine": true,
"terminal.integrated.env.osx": {
"PYTHONPATH": "${env:PYTHONPATH}:${workspaceFolder}/src"
},
Expand Down
2 changes: 1 addition & 1 deletion sdk
Submodule sdk updated 1 files
+1 −1 .vscode/settings.json

0 comments on commit 4c0048e

Please sign in to comment.