Spaces:
Runtime error
Runtime error
Update page/intro.py
Browse files- page/intro.py +2 -2
page/intro.py
CHANGED
@@ -109,7 +109,7 @@ def app():
|
|
109 |
|
110 |
for column in columns2:
|
111 |
with column:
|
112 |
-
for i in range(
|
113 |
|
114 |
images.append( st.empty() )
|
115 |
|
@@ -121,7 +121,7 @@ def app():
|
|
121 |
last = -1
|
122 |
|
123 |
while(True):
|
124 |
-
ch = random.randrange(
|
125 |
with images[ch].container():
|
126 |
st.image(randomFile(ch))
|
127 |
time.sleep(0.33)
|
|
|
109 |
|
110 |
for column in columns2:
|
111 |
with column:
|
112 |
+
for i in range(2):
|
113 |
|
114 |
images.append( st.empty() )
|
115 |
|
|
|
121 |
last = -1
|
122 |
|
123 |
while(True):
|
124 |
+
ch = random.randrange(10)
|
125 |
with images[ch].container():
|
126 |
st.image(randomFile(ch))
|
127 |
time.sleep(0.33)
|