Skip to content

Commit 4340904

Browse files
authored
Merge pull request #100 from pariterre/master
Cleaned a bit for pep8 and updated to latest pyomeca
2 parents 6fa9f22 + 5723406 commit 4340904

File tree

10 files changed

+1537
-1493
lines changed

10 files changed

+1537
-1493
lines changed

.vscode/launch.json

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": "Main example",
9+
"type": "debugpy",
10+
"request": "launch",
11+
"program": "${workspaceFolder}/examples/biorbd_viz.py",
12+
"env": {"PYTHONPATH": "${workspaceFolder}"},
13+
"console": "integratedTerminal"
14+
}
15+
]
16+
}

.vscode/settings.json

+2-4
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,10 @@
22
"python.testing.pytestArgs": ["tests"],
33
"python.testing.unittestEnabled": false,
44
"python.testing.pytestEnabled": true,
5-
"python.analysis.extraPaths": ["./external/pyScienceMode"],
6-
"python.envFile": "${workspaceFolder}/.vscode/.env",
75
"[python]": {
86
"editor.defaultFormatter": "ms-python.black-formatter",
97
"editor.formatOnSave": true,
10-
"editor.rulers": [120]
8+
"editor.rulers": [120],
119
},
12-
"cmake.configureOnOpen": false
10+
"cmake.configureOnOpen": false,
1311
}

0 commit comments

Comments
 (0)