diff options
author | Dalf <alex@al-f.net> | 2020-08-12 09:42:27 +0200 |
---|---|---|
committer | Alexandre Flament <alex@al-f.net> | 2020-09-10 10:39:04 +0200 |
commit | 78883777438fc07833d983c50d9b131eb6feb9eb (patch) | |
tree | fec44995d58a5c8ebe33ccd4406eaa228a55cbb3 /searx/results.py | |
parent | 78df10fb55d9632ccae71d9f3b9260c7614a421c (diff) | |
download | searxng-78883777438fc07833d983c50d9b131eb6feb9eb.tar.gz searxng-78883777438fc07833d983c50d9b131eb6feb9eb.zip |
Drop Python 2 (3/n): objects
Diffstat (limited to 'searx/results.py')
-rw-r--r-- | searx/results.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/searx/results.py b/searx/results.py index 51af32fd0..e4cad2e24 100644 --- a/searx/results.py +++ b/searx/results.py @@ -122,14 +122,14 @@ def result_score(result): return sum((occurences * weight) / position for position in result['positions']) -class ResultContainer(object): +class ResultContainer: """docstring for ResultContainer""" __slots__ = '_merged_results', 'infoboxes', 'suggestions', 'answers', 'corrections', '_number_of_results',\ '_ordered', 'paging', 'unresponsive_engines', 'timings', 'redirect_url' def __init__(self): - super(ResultContainer, self).__init__() + super().__init__() self._merged_results = [] self.infoboxes = [] self.suggestions = set() |