summaryrefslogtreecommitdiff
path: root/searx/compat.py
diff options
context:
space:
mode:
Diffstat (limited to 'searx/compat.py')
-rw-r--r--searx/compat.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/searx/compat.py b/searx/compat.py
index 504df7da2..15e27d45d 100644
--- a/searx/compat.py
+++ b/searx/compat.py
@@ -7,8 +7,11 @@
# pylint: disable=C,R
+__all__ = ('cached_property',)
+
+
try:
- from functools import cached_property # pylint: disable=unused-import
+ from functools import cached_property # type: ignore
except ImportError: