diff options
author | Markus Heiser <markus.heiser@darmarit.de> | 2021-12-27 10:16:20 +0100 |
---|---|---|
committer | Markus Heiser <markus.heiser@darmarit.de> | 2021-12-27 10:16:20 +0100 |
commit | d84226bf63757b1d4245ab26e9c081daf42389aa (patch) | |
tree | 9c0456ad1a1d9d375311ccd8c9bd3eafd0779114 /tests | |
parent | 3d96a9839a12649874b6d4cf9466bd3616b0a03c (diff) | |
download | searxng-d84226bf63757b1d4245ab26e9c081daf42389aa.tar.gz searxng-d84226bf63757b1d4245ab26e9c081daf42389aa.zip |
[fix] issues reported by pylint
Fix pylint issues from commit (3d96a983)
[format.python] initial formatting of the python code
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/unit/test_webutils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/test_webutils.py b/tests/unit/test_webutils.py index 8bb3a0447..2b7c6fe5a 100644 --- a/tests/unit/test_webutils.py +++ b/tests/unit/test_webutils.py @@ -22,7 +22,7 @@ class TestWebUtils(SearxTestCase): self.assertEqual(webutils.highlight_content('', None), None) self.assertEqual(webutils.highlight_content(False, None), None) - contents = ['<html></html>' 'not<'] + contents = ['<html></html>not<'] for content in contents: self.assertEqual(webutils.highlight_content(content, None), content) |