PEP-8 formatting fix

このコミットが含まれているのは:
Ben Busby 2021-10-26 16:17:38 -06:00
コミット f154b5f2e2
この署名に対応する既知のキーがデータベースに存在しません
GPGキーID: 339B7B7EB5333D14
1個のファイルの変更3行の追加5行の削除

ファイルの表示

@ -4,7 +4,6 @@ import urllib.parse as urlparse
from urllib.parse import parse_qs
import re
SKIP_ARGS = ['ref_src', 'utm']
SKIP_PREFIX = ['//www.', '//mobile.', '//m.']
GOOG_STATIC = 'www.gstatic.com'
@ -14,7 +13,6 @@ BLANK_B64 = ('data:image/png;base64,'
'iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAQAAAAnOwc2AAAAD0lEQVR42mNkw'
'AIYh7IgAAVVAAuInjI5AAAAAElFTkSuQmCC')
# Ad keywords
BLACKLIST = [
'ad', 'anuncio', 'annuncio', 'annonce', 'Anzeige', '广告', '廣告', 'Reklama',
@ -56,9 +54,9 @@ def bold_search_terms(response: str, query: str) -> BeautifulSoup:
element.replace_with(
re.sub(r'\b((?![{}<>-])' + target_word + r'(?![{}<>-]))\b',
r'<b>\1</b>',
element,
flags=re.I)
r'<b>\1</b>',
element,
flags=re.I)
)
# Split all words out of query, grouping the ones wrapped in quotes