Spaces:
Sleeping
Sleeping
Commit
·
f422757
1
Parent(s):
aa89488
updates
Browse files
app.py
CHANGED
|
@@ -106,6 +106,7 @@ def get_next_image(session_data):
|
|
| 106 |
# Available images filter
|
| 107 |
available_images = [
|
| 108 |
img for img in image_files
|
|
|
|
| 109 |
match = re.search(r'_(\d+)\.', img)
|
| 110 |
image_id = match.group(1).lstrip('0') # Remove leading zeros
|
| 111 |
|
|
|
|
| 106 |
# Available images filter
|
| 107 |
available_images = [
|
| 108 |
img for img in image_files
|
| 109 |
+
print(img)
|
| 110 |
match = re.search(r'_(\d+)\.', img)
|
| 111 |
image_id = match.group(1).lstrip('0') # Remove leading zeros
|
| 112 |
|