PEP-8 formatting fix

pull/496/head
Ben Busby 3 years ago
parent 6decab5a51
commit f154b5f2e2
No known key found for this signature in database
GPG Key ID: 339B7B7EB5333D14

@ -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

Loading…
Cancel
Save