Spaces:
Sleeping
Sleeping
Commit
·
8d18a89
1
Parent(s):
5e762bd
Update app.py
Browse files
app.py
CHANGED
@@ -25,9 +25,10 @@ def flip_text(x):
|
|
25 |
|
26 |
def txtRouletteHandler(x, y):
|
27 |
rn = random.randrange(2)
|
|
|
28 |
if (rn == 1):
|
29 |
return letterize(x)
|
30 |
-
|
31 |
return flip_text(x)
|
32 |
else
|
33 |
return flip_text(x)
|
|
|
25 |
|
26 |
def txtRouletteHandler(x, y):
|
27 |
rn = random.randrange(2)
|
28 |
+
print(rn)
|
29 |
if (rn == 1):
|
30 |
return letterize(x)
|
31 |
+
elif (rn == 2):
|
32 |
return flip_text(x)
|
33 |
else
|
34 |
return flip_text(x)
|