Update app.py
Browse files
app.py
CHANGED
@@ -34,7 +34,7 @@ for item in root.findall('item'):
|
|
34 |
item_text.append(f"{child.tag}: {child.text.strip()}")
|
35 |
|
36 |
# Her bir 'item' için oluşturulan metni 'items_text' listesine ekliyoruz
|
37 |
-
items_text.append('
|
38 |
|
39 |
# Tüm 'item' metinlerini birleştir
|
40 |
full_text = '\n\n'.join(items_text)
|
|
|
34 |
item_text.append(f"{child.tag}: {child.text.strip()}")
|
35 |
|
36 |
# Her bir 'item' için oluşturulan metni 'items_text' listesine ekliyoruz
|
37 |
+
items_text.append(' '.join(item_text))
|
38 |
|
39 |
# Tüm 'item' metinlerini birleştir
|
40 |
full_text = '\n\n'.join(items_text)
|