We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3009353 commit 7c55e12Copy full SHA for 7c55e12
2 files changed
plugins/amazon.py
@@ -11,7 +11,7 @@
11
12
@hook.command("amazon", "az")
13
def amazon(text):
14
- """ <query> -- Searches Amazon for query"""
+ """<query> -- Searches Amazon for query"""
15
headers = {
16
'User-Agent': 'Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.4 (KHTML, '
17
'like Gecko) Chrome/22.0.1229.79 Safari/537.4',
plugins/books.py
@@ -18,7 +18,6 @@ def books(text):
18
"""books <query> -- Searches Google Books for <query>."""
19
if not dev_key:
20
return "This command requires a Google Developers Console API key."
21
- formatting.HTMLTextExtractor
22
23
json = requests.get(book_search_api, params={"q": text, "key": dev_key}).json()
24
0 commit comments