From 04262d068125aa2064c40ae4ea67871b6deaba18 Mon Sep 17 00:00:00 2001 From: Myzel394 <50424412+Myzel394@users.noreply.github.com> Date: Sun, 7 Jan 2024 21:37:47 +0100 Subject: [PATCH] fix(webapp): Add missing pylint comment --- searx/webapp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/searx/webapp.py b/searx/webapp.py index c1f371efc..89bd96ed6 100755 --- a/searx/webapp.py +++ b/searx/webapp.py @@ -673,7 +673,7 @@ def search(): # 2. add Server-Timing header for measuring performance characteristics of # web applications - timings = result_container.get_timings() + timings = result_container.get_timings() # pylint: disable=assigning-non-slot request.timings = timings longest_loading_time = result_container.get_longest_loading_time()