Spaces:
Running
Running
Update app.py
Browse filesRemoving a print statement, I wonder if this has to do with breaking the max token output limit?
app.py
CHANGED
@@ -54,7 +54,7 @@ def webpage_contents_soup_links(response_content:bytes)->list:
|
|
54 |
list_ret
|
55 |
for link in soup.find_all("a"):
|
56 |
ret_t = link.get("href")
|
57 |
-
print(link.get("href"))
|
58 |
list_ret.append(link.get("href"))
|
59 |
return list_ret
|
60 |
|
|
|
54 |
list_ret
|
55 |
for link in soup.find_all("a"):
|
56 |
ret_t = link.get("href")
|
57 |
+
#print(link.get("href"))
|
58 |
list_ret.append(link.get("href"))
|
59 |
return list_ret
|
60 |
|