Fix pep8 issues (4)
This commit is contained in:
parent
7bcc1d41a4
commit
4a3c1d6b3b
|
@ -125,12 +125,11 @@ class Filter:
|
||||||
def remove_site_blocks(self, soup) -> None:
|
def remove_site_blocks(self, soup) -> None:
|
||||||
if not self.config.block:
|
if not self.config.block:
|
||||||
return
|
return
|
||||||
selected = soup.body.findAll(
|
search_string=' '.join(['-site:' + _ for _ in self.config.block.split(',')])
|
||||||
text=re.compile(' '.join(['-site:' + _ for _ in self.config.block.split(',')])))
|
selected = soup.body.findAll(text=re.compile(search_string))
|
||||||
|
|
||||||
for result in selected:
|
for result in selected:
|
||||||
result.string.replace_with(
|
result.string.replace_with(result.string.replace(search_string, ''))
|
||||||
result.string.replace(' '.join(['-site:' + _ for _ in self.config.block.split(',')]), ''))
|
|
||||||
|
|
||||||
def remove_ads(self) -> None:
|
def remove_ads(self) -> None:
|
||||||
"""Removes ads found in the list of search result divs
|
"""Removes ads found in the list of search result divs
|
||||||
|
|
Loading…
Reference in New Issue
Block a user