Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 11b325c

Browse files
committed
wip
1 parent fc63aa4 commit 11b325c

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

dap_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
HOST = "127.0.0.1"
77
PORT = 5678
8-
DEPTH_LIMIT = 3 # How many levels deep to fetch variables
8+
DEPTH_LIMIT = 2 # How many levels deep to fetch variables
99

1010

1111
def read_line(sock):

pov.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ def render_variable_tree(variables):
3333
"""
3434
Renders a list of variables (each may have 'children') in a nested tree format.
3535
"""
36+
print(f"Rendering variable tree with {len(variables)} variables")
3637
for v in variables:
3738
# print(f"Rendering variable tree for: {v}")
3839
name = v["name"]

0 commit comments

Comments
 (0)