Mr-Vicky-01 commited on
Commit
cfa3452
1 Parent(s): 0e7d663

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -61,7 +61,7 @@ def json_to_text(data, prefix=""):
61
  for key, value in data.items():
62
  if isinstance(value, dict):
63
  # Recurse for nested dictionaries
64
- nested_text = simple_json_to_text(value, prefix=f"{prefix}{key} of ")
65
  text_output.append(nested_text)
66
  else:
67
  # Simplified key-value representation
 
61
  for key, value in data.items():
62
  if isinstance(value, dict):
63
  # Recurse for nested dictionaries
64
+ nested_text = json_to_text(value, prefix=f"{prefix}{key} of ")
65
  text_output.append(nested_text)
66
  else:
67
  # Simplified key-value representation