From: Philipp Spitzer Date: Sun, 13 Mar 2022 16:28:03 +0000 (+0100) Subject: Fix typo in docstring. X-Git-Url: https://git.toastfreeware.priv.at/philipp/winterrodeln/wrpylib.git/commitdiff_plain/2872242371b0608783f205eb5e9baac4d071c227 Fix typo in docstring. --- diff --git a/wrpylib/wrvalidators.py b/wrpylib/wrvalidators.py index 3764bf3..2e5cd5e 100644 --- a/wrpylib/wrvalidators.py +++ b/wrpylib/wrvalidators.py @@ -325,7 +325,7 @@ opt_tristate_german_converter = FromToConverter(opt_tristate_german_from_str, op # ------------------------------- def opt_tristate_german_comment_from_str(value: str) -> Tuple[Optional[float], Optional[str]]: - """Ja, Nein or Teilweise, optionally with comment in parenthesis.""" + """Ja, Nein or Teilweise, optionally with comment in parentheses.""" return value_comment_from_str(value, opt_tristate_german_from_str, opt_str_from_str, True)