Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -472,9 +472,10 @@ def create_index():
|
|
472 |
print(k)
|
473 |
print(ea['file_name'])
|
474 |
if k in ind:
|
475 |
-
|
476 |
ind[k].append(ea['file_name'])
|
477 |
else:
|
|
|
478 |
ind.append({k:[ea['file_name']]})
|
479 |
except Exception as e:
|
480 |
print (e)
|
|
|
472 |
print(k)
|
473 |
print(ea['file_name'])
|
474 |
if k in ind:
|
475 |
+
print("Adding to list")
|
476 |
ind[k].append(ea['file_name'])
|
477 |
else:
|
478 |
+
print("Adding new Value")
|
479 |
ind.append({k:[ea['file_name']]})
|
480 |
except Exception as e:
|
481 |
print (e)
|