Spaces:
Paused
Paused
tamas.kiss
commited on
Commit
·
298d2e0
1
Parent(s):
07a2bd6
Update google search output with newlines
Browse files
app.py
CHANGED
@@ -38,7 +38,7 @@ def google_search(text):
|
|
38 |
|
39 |
res.append(t)
|
40 |
|
41 |
-
ans = "\n".join(res)
|
42 |
except Exception as ex:
|
43 |
print(f"Error: {ex}")
|
44 |
ans = ""
|
|
|
38 |
|
39 |
res.append(t)
|
40 |
|
41 |
+
ans = " \n".join(res)
|
42 |
except Exception as ex:
|
43 |
print(f"Error: {ex}")
|
44 |
ans = ""
|