File tree 2 files changed +2
-2
lines changed
Filter options
2 files changed +2
-2
lines changed
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ Debugging tool thats lets you easily inspect/visualize objects and variables in
3
3
4
4
5
5
## Setup
6
- On the project you wish to debug, install ` debugpy ` :
6
+ On the project you wish to debug, install [ debugpy] ( https://github.com/microsoft/debugpy ) :
7
7
` pipenv install debugpy `
8
8
9
9
Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ def pov():
88
88
globals_scope = results .get ("globals" , [])
89
89
locals_scope = results .get ("locals" , [])
90
90
91
- # Sort by 'name' (optional)
91
+ # Sort by 'name' (optional) -- think this messes up the order of variables / children references
92
92
# globals_scope.sort(key=lambda x: x.get("name", "").lower())
93
93
# locals_scope.sort(key=lambda x: x.get("name", "").lower())
94
94
# print(f"Globals: {globals_scope}")
You can’t perform that action at this time.
0 commit comments