From 2025f9b896fd87755b3d43358537afee1ebe5208 Mon Sep 17 00:00:00 2001 From: "Karl O. Pinc" Date: Wed, 27 Sep 2023 23:09:46 -0500 Subject: [PATCH] Better function documentation --- doc/extract_view.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/extract_view.py b/doc/extract_view.py index 45d2c97..7f0ae82 100755 --- a/doc/extract_view.py +++ b/doc/extract_view.py @@ -44,9 +44,9 @@ def get_body(fd): def cleanup(body): - """Mutate the list that is body, with leading and trailing lines that - are empty or consist only of whitespace removed, and all trailing - lines that match SQL_COMMENT removed. + """Mutate the list that is body. Remove leading and trailing lines that + are empty or consist only of whitespace. And remove all trailing + lines that match SQL_COMMENT. """ while body[0].strip == "": del body[0] -- 2.34.1