MUmairAB commited on
Commit
81fdd06
·
1 Parent(s): 3a084c8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -17,7 +17,7 @@ def print_the_mask(text):
17
  #First sort the list of dictionaries according to the score
18
  model_out = sorted(model_out, key=lambda x: x['score'],reverse=True)
19
  for sub_dict in model_out:
20
- print(sub_dict["sequence"])
21
 
22
 
23
  #The main function that will be executed when this file is executed
 
17
  #First sort the list of dictionaries according to the score
18
  model_out = sorted(model_out, key=lambda x: x['score'],reverse=True)
19
  for sub_dict in model_out:
20
+ st.success(sub_dict["sequence"])
21
 
22
 
23
  #The main function that will be executed when this file is executed