From 78883777438fc07833d983c50d9b131eb6feb9eb Mon Sep 17 00:00:00 2001 From: Dalf Date: Wed, 12 Aug 2020 09:42:27 +0200 Subject: Drop Python 2 (3/n): objects --- searx/results.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'searx/results.py') 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() -- cgit v1.2.3