GattoNero commited on
Commit
d31427a
·
verified ·
1 Parent(s): 2ffaa3c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -6
app.py CHANGED
@@ -577,16 +577,16 @@ def process_questions(serviceList):
577
  serviceList = [q for q in serviceList if q not in removed_random]
578
 
579
  # 4. Stampa le domande eliminate
580
- print("=== Domande rimosse per blacklist ===")
581
- print(removed_blacklisted)
582
- print("=== Domande rimosse random ===")
583
  for q in removed_random:
584
- print(q)
585
 
586
  # 5. Stampa la nuova serviceList
587
- print("=== Nuova serviceList ===")
588
  for q in serviceList:
589
- print(q)
590
 
591
  # 6. Aggiungi le domande della whiteList
592
  serviceList.extend(whiteList)
 
577
  serviceList = [q for q in serviceList if q not in removed_random]
578
 
579
  # 4. Stampa le domande eliminate
580
+ print_coso("=== Domande rimosse per blacklist ===")
581
+ print_coso(removed_blacklisted)
582
+ print_coso("=== Domande rimosse random ===")
583
  for q in removed_random:
584
+ print_coso(q)
585
 
586
  # 5. Stampa la nuova serviceList
587
+ print_coso("=== Nuova serviceList ===")
588
  for q in serviceList:
589
+ print_coso(q)
590
 
591
  # 6. Aggiungi le domande della whiteList
592
  serviceList.extend(whiteList)