DemiPoto commited on
Commit
bf06308
·
verified ·
1 Parent(s): 22e71c8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -277,7 +277,7 @@ def fonc_load_info(nb_of_models_to_gen,index_tag,index_first_model):
277
  nb_of_models_to_gen= len(tags_plus_models[index_tag][2])-index_first_model
278
  str_temp+=f" - only {nb_of_models_to_gen} will be use\n\n"
279
  str_temp+="list of models use: (from "
280
- str_temp+=f"{index_first_model+1}/{len(tags_plus_models[index_tag][2])} to {index_first_model+nb_of_models_to_gen+1}/{len(tags_plus_models[index_tag][2])})\n"
281
  for i in range(nb_of_models_to_gen):
282
  str_temp+=f"{tags_plus_models[index_tag][2][i+index_first_model]}\n"
283
 
 
277
  nb_of_models_to_gen= len(tags_plus_models[index_tag][2])-index_first_model
278
  str_temp+=f" - only {nb_of_models_to_gen} will be use\n\n"
279
  str_temp+="list of models use: (from "
280
+ str_temp+=f"{index_first_model+1}/{len(tags_plus_models[index_tag][2])} to {index_first_model+nb_of_models_to_gen}/{len(tags_plus_models[index_tag][2])})\n"
281
  for i in range(nb_of_models_to_gen):
282
  str_temp+=f"{tags_plus_models[index_tag][2][i+index_first_model]}\n"
283