josiauhlol commited on
Commit
8d18a89
·
1 Parent(s): 5e762bd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
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
- if (rn == 2):
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)