From d40b6e4cae73ca717886a513b26b3ba67866d594 Mon Sep 17 00:00:00 2001 From: iron3oxide Date: Mon, 2 May 2022 22:19:15 +0200 Subject: [PATCH] docs(docstring of _in()): Use semantic newlines --- src/attr/validators.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/attr/validators.py b/src/attr/validators.py index 0e4633d60..9d579bc27 100644 --- a/src/attr/validators.py +++ b/src/attr/validators.py @@ -330,9 +330,11 @@ def in_(options, verbose_value_error=False): :param verbose_value_error: Determines extent of the ValueError signature. :type verbose_value_error: bool - :raises ValueError: With a human readable error message, and if - verbose_value_error is set to True, the attribute (of type - `attrs.Attribute`), the expected options, and the value it got. + :raises ValueError: With a human readable error message, + and if verbose_value_error is set to True, + the attribute (of type `attrs.Attribute`), + the expected options, + and the value it got. .. versionadded:: 17.1.0 """