From f31a3a2053b07b834c5143bd6be4eaf05c1a014d Mon Sep 17 00:00:00 2001 From: Bnyro Date: Wed, 9 Oct 2024 11:59:31 +0200 Subject: [chore] *: fix typos detected by typos-cli --- searx/botdetection/config.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'searx/botdetection/config.py') diff --git a/searx/botdetection/config.py b/searx/botdetection/config.py index 2a982ba64..274be77df 100644 --- a/searx/botdetection/config.py +++ b/searx/botdetection/config.py @@ -22,7 +22,7 @@ log = logging.getLogger(__name__) class FALSE: - """Class of ``False`` singelton""" + """Class of ``False`` singleton""" # pylint: disable=multiple-statements def __init__(self, msg): @@ -81,7 +81,7 @@ class Config: return cfg def __init__(self, cfg_schema: typing.Dict, deprecated: typing.Dict[str, str]): - """Construtor of class Config. + """Constructor of class Config. :param cfg_schema: Schema of the configuration :param deprecated: dictionary that maps deprecated configuration names to a messages @@ -159,7 +159,7 @@ class Config: return pathlib.Path(str(val)) def pyobj(self, name, default=UNSET): - """Get python object refered by full qualiffied name (FQN) in the config + """Get python object referred by full qualiffied name (FQN) in the config string.""" fqn = self.get(name, default) -- cgit v1.2.3