Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit b7872d9

Browse filesBrowse files
committed
wip
1 parent f31b5be commit b7872d9
Copy full SHA for b7872d9

File tree

2 files changed

+2
-2
lines changed
Filter options

2 files changed

+2
-2
lines changed

‎README.md

Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Debugging tool thats lets you easily inspect/visualize objects and variables in
33

44

55
## 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):
77
`pipenv install debugpy`
88

99

‎pov.py

Copy file name to clipboardExpand all lines: pov.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def pov():
8888
globals_scope = results.get("globals", [])
8989
locals_scope = results.get("locals", [])
9090

91-
# Sort by 'name' (optional)
91+
# Sort by 'name' (optional) -- think this messes up the order of variables / children references
9292
# globals_scope.sort(key=lambda x: x.get("name", "").lower())
9393
# locals_scope.sort(key=lambda x: x.get("name", "").lower())
9494
# print(f"Globals: {globals_scope}")

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.