Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion src/click/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,10 @@ def make_str(value: t.Any) -> str:


def make_default_short_help(help: str, max_length: int = 45) -> str:
"""Returns a condensed version of help string."""
"""Returns a condensed version of help string.

:meta private:
"""
# Consider only the first paragraph.
paragraph_end = help.find("\n\n")

Expand Down
Loading