Skip to content

Commit

Permalink
debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
janorivera committed Nov 22, 2024
1 parent a47460a commit a471601
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,10 @@ def get_nested_key(data, key):

path = key.split('.')
current = data

print(json.dumps(current, indent=4))

for path_key in path:
print(path_key)
if path_key not in current:
return None
current = current[path_key]
Expand Down

0 comments on commit a471601

Please sign in to comment.