python: Strip leading and trailing spaces from docstrings.

This is enforced by Black ≥ 21.4b0.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg
2021-05-07 17:36:30 -07:00
committed by Tim Abbott
parent ad0be6cea1
commit d0c6f4f400
14 changed files with 26 additions and 26 deletions

View File

@@ -337,7 +337,7 @@ def render_curl_example(
exclude: Optional[List[str]] = None,
include: Optional[List[str]] = None,
) -> List[str]:
""" A simple wrapper around generate_curl_example. """
"""A simple wrapper around generate_curl_example."""
parts = function.split(":")
endpoint = parts[0]
method = parts[1]