Fix Python 3.9 issue + remove category

This commit is contained in:
james-still 2022-07-23 03:25:07 +01:00 committed by GitHub
parent 2fc01eb20f
commit c1d1e7bf36
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@ about = {
"results": 'HTML',
}
categories = ['general']
categories = []
paging = False
time_range_support = False
@ -34,7 +34,7 @@ search_url = base_url + '/search/?{query}'
def request(query, params):
params['url'] = search_url.format(
query = urlencode({'q': query}),
query=urlencode({'q': query}),
)
return params