From 7420706a5074803a78f3c795cf79427746e504e0 Mon Sep 17 00:00:00 2001 From: Jost Alemann <58050402+ddogfoodd@users.noreply.github.com> Date: Tue, 20 May 2025 19:03:54 +0000 Subject: [chore] fix some docstring typos (#4815) --- searx/botdetection/config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'searx/botdetection') 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 = [] -- cgit v1.2.3