[chore] fix some docstring typos (#4815)
Some checks are pending
Documentation / Release (push) Waiting to run
Integration / Python 3.10 (push) Waiting to run
Integration / Python 3.11 (push) Waiting to run
Integration / Python 3.12 (push) Waiting to run
Integration / Python 3.13 (push) Waiting to run
Integration / Python 3.9 (push) Waiting to run
Integration / Theme (push) Waiting to run

This commit is contained in:
Jost Alemann 2025-05-20 19:03:54 +00:00 committed by GitHub
parent 6ec554cb5b
commit 7420706a50
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 20 additions and 20 deletions

View file

@ -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 = []