summaryrefslogtreecommitdiff
path: root/searx/botdetection
diff options
context:
space:
mode:
authorJost Alemann <58050402+ddogfoodd@users.noreply.github.com>2025-05-20 19:03:54 +0000
committerGitHub <noreply@github.com>2025-05-20 21:03:54 +0200
commit7420706a5074803a78f3c795cf79427746e504e0 (patch)
tree67b3ed9c28fe3d145d2d3ab8eaa96ebd5bd34714 /searx/botdetection
parent6ec554cb5b014dc362c9dc6c4618a6614199911d (diff)
[chore] fix some docstring typos (#4815)
Diffstat (limited to 'searx/botdetection')
-rw-r--r--searx/botdetection/config.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/searx/botdetection/config.py b/searx/botdetection/config.py
index 274be77df..5b73afe1c 100644
--- a/searx/botdetection/config.py
+++ b/searx/botdetection/config.py
@@ -319,9 +319,9 @@ def dict_deepupdate(base_dict: dict, upd_dict: dict, names=None):
"""
# pylint: disable=too-many-branches
if not isinstance(base_dict, dict):
- raise TypeError("argument 'base_dict' is not a ditionary type")
+ raise TypeError("argument 'base_dict' is not a dictionary type")
if not isinstance(upd_dict, dict):
- raise TypeError("argument 'upd_dict' is not a ditionary type")
+ raise TypeError("argument 'upd_dict' is not a dictionary type")
if names is None:
names = []