We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 929e71e commit 445ea13Copy full SHA for 445ea13
zulip_bots/zulip_bots/bots/google_search/google_search.py
@@ -18,7 +18,7 @@ def google_search(keywords: str) -> List[Dict[str, str]]:
18
# Gets all search URLs
19
search = soup.find(id="search")
20
assert isinstance(search, Tag)
21
- anchors = search.findAll("a")
+ anchors = search.find_all("a")
22
results = []
23
24
for a in anchors:
0 commit comments