Karumoon commited on
Commit
24ff1e4
·
1 Parent(s): 3205346

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -5
app.py CHANGED
@@ -72,11 +72,8 @@ proc3=gr.Interface.load(f"models/{model_3}",live=False,preprocess=True, postproc
72
  def randStr():
73
  pp=["a","b","c","d","e","f","g","h"]
74
  str="";
75
- str+=random.choise(pp)+random.choise(pp)+random.choise(pp)+random.choise(pp)
76
- str+=random.choise(pp)+random.choise(pp)+random.choise(pp)+random.choise(pp)
77
- str+=random.choise(pp)+random.choise(pp)+random.choise(pp)+random.choise(pp)
78
- str+=random.choise(pp)+random.choise(pp)+random.choise(pp)+random.choise(pp)
79
- return str
80
 
81
  def bbb22(text):
82
 
 
72
  def randStr():
73
  pp=["a","b","c","d","e","f","g","h"]
74
  str="";
75
+ str+=random.choice(pp)+random.choice(pp)+random.choice(pp)
76
+ return str
 
 
 
77
 
78
  def bbb22(text):
79