Ramesh-vani commited on
Commit
912ff50
·
verified ·
1 Parent(s): 3cbc949

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -27,7 +27,7 @@ async def generate_file_structure(path='.', encoding='utf-8'):
27
  for entry in entries:
28
  entry_path = os.path.join(path, entry)
29
  if os.path.isdir(entry_path):
30
- child_structure = generate_file_structure(entry_path, encoding)
31
  file_structure['children'].append(child_structure)
32
  elif os.path.isfile(entry_path):
33
  try:
 
27
  for entry in entries:
28
  entry_path = os.path.join(path, entry)
29
  if os.path.isdir(entry_path):
30
+ child_structure =await generate_file_structure(entry_path, encoding)
31
  file_structure['children'].append(child_structure)
32
  elif os.path.isfile(entry_path):
33
  try: