mirror of
https://github.com/searxng/searxng.git
synced 2025-12-22 19:50:00 +00:00
[chore] fix some docstring typos (#4815)
This commit is contained in:
@@ -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 = []
|
||||
|
||||
Reference in New Issue
Block a user