diff options
author | Adam Tauber <asciimoo@gmail.com> | 2020-01-02 22:37:06 +0100 |
---|---|---|
committer | Adam Tauber <asciimoo@gmail.com> | 2020-01-02 22:38:12 +0100 |
commit | 17b6faa4c3c1cf14a327f4a3538fc70dce08b756 (patch) | |
tree | 0e5b343e3bc47fed8fb26755e12888ac80d2a627 | |
parent | ad5bb994b1cff56c4f021f88bfa62f38055f1416 (diff) | |
download | searxng-17b6faa4c3c1cf14a327f4a3538fc70dce08b756.tar.gz searxng-17b6faa4c3c1cf14a327f4a3538fc70dce08b756.zip |
[fix] pep8
-rw-r--r-- | searx/engines/bing.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/searx/engines/bing.py b/searx/engines/bing.py index 24776c400..b193f7c60 100644 --- a/searx/engines/bing.py +++ b/searx/engines/bing.py @@ -63,8 +63,6 @@ def response(resp): results = [] result_len = 0 - - dom = html.fromstring(resp.text) # parse results for result in eval_xpath(dom, '//div[@class="sa_cc"]'): |