From 948bec1b956afc0a36da3f4e810f0887c967e7cf Mon Sep 17 00:00:00 2001 From: Vytautas Liuolia Date: Sat, 21 Sep 2024 21:10:26 +0200 Subject: [PATCH] docs(req): ignore D205 error because it is hard to rephrase --- falcon/request.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/falcon/request.py b/falcon/request.py index d7d582f1e..6c4fd8b4c 100644 --- a/falcon/request.py +++ b/falcon/request.py @@ -2453,7 +2453,7 @@ def auto_parse_form_urlencoded(self) -> bool: Falcon expects form-encoded request bodies to be encoded according to the standard W3C algorithm (see also https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#application%2Fx-www-form-urlencoded-encoding-algorithm). - """ + """ # noqa: D205 return self._auto_parse_form_urlencoded @auto_parse_form_urlencoded.setter