summaryrefslogtreecommitdiff
path: root/searx/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'searx/utils.py')
-rw-r--r--searx/utils.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/searx/utils.py b/searx/utils.py
index 0c11ccc65..191161bde 100644
--- a/searx/utils.py
+++ b/searx/utils.py
@@ -44,16 +44,6 @@ _JS_QUOTE_KEYS_RE = re.compile(r'([\{\s,])(\w+)(:)')
_JS_VOID_RE = re.compile(r'void\s+[0-9]+|void\s*\([0-9]+\)')
_JS_DECIMAL_RE = re.compile(r":\s*\.")
-_STORAGE_UNIT_VALUE: Dict[str, int] = {
- 'TB': 1024 * 1024 * 1024 * 1024,
- 'GB': 1024 * 1024 * 1024,
- 'MB': 1024 * 1024,
- 'TiB': 1000 * 1000 * 1000 * 1000,
- 'GiB': 1000 * 1000 * 1000,
- 'MiB': 1000 * 1000,
- 'KiB': 1000,
-}
-
_XPATH_CACHE: Dict[str, XPath] = {}
_LANG_TO_LC_CACHE: Dict[str, Dict[str, str]] = {}