Spaces:
Running
Running
Update app.py
Browse files
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 |
-
|
581 |
-
|
582 |
-
|
583 |
for q in removed_random:
|
584 |
-
|
585 |
|
586 |
# 5. Stampa la nuova serviceList
|
587 |
-
|
588 |
for q in serviceList:
|
589 |
-
|
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)
|