Jack Monas
commited on
Commit
·
f33b08d
1
Parent(s):
28a221f
gif
Browse files
app.py
CHANGED
|
@@ -82,7 +82,7 @@ def main():
|
|
| 82 |
gif_paths = sorted(glob.glob(os.path.join(gif_folder, "*.gif")))
|
| 83 |
|
| 84 |
# Display 4 GIFs per row
|
| 85 |
-
for i in range(0,
|
| 86 |
# Slice out a batch of 4 GIFs
|
| 87 |
row_gifs = gif_paths[i:i+4]
|
| 88 |
|
|
|
|
| 82 |
gif_paths = sorted(glob.glob(os.path.join(gif_folder, "*.gif")))
|
| 83 |
|
| 84 |
# Display 4 GIFs per row
|
| 85 |
+
for i in range(0, 16, 4):
|
| 86 |
# Slice out a batch of 4 GIFs
|
| 87 |
row_gifs = gif_paths[i:i+4]
|
| 88 |
|