ChIrish06 commited on
Commit
ae09186
·
verified ·
1 Parent(s): 8b73493

Update app.py

Browse files

Removing a print statement, I wonder if this has to do with breaking the max token output limit?

Files changed (1) hide show
  1. app.py +1 -1
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