Closed
Description
Hey there! Quick question regarding the behavior of multi-line parameter descriptions in Google-style docstrings.
Consider the following code:
# main.py
def foo(bar):
"""
This does a foo on a bar.
Args:
bar (str): Though a simple parameter, this parameter will need a lot of
verbiage to describe, requiring a second line.
"""
print(f"Hi, {bar}!")
if __name__ == "__main__":
import fire
fire.Fire(foo)
When running main.py --help
, the resulting man
is:
NAME
main.py - This does a foo on a bar.
SYNOPSIS
main.py BAR
DESCRIPTION
This does a foo on a bar.
POSITIONAL ARGUMENTS
BAR
Though a simple parameter, this parameter will need a lot of
NOTES
You can also use flags syntax for POSITIONAL ARGUMENTS
Notice that we are losing the following line here.
I'd expect the newline-containing description to be un-newlined (definitely not a word)
NAME
main.py - This does a foo on a bar.
SYNOPSIS
main.py BAR
DESCRIPTION
This does a foo on a bar.
POSITIONAL ARGUMENTS
BAR
Though a simple parameter, this parameter will need a lot of verbiage to describe, requiring a second line.
NOTES
You can also use flags syntax for POSITIONAL ARGUMENTS
Or maybe included with the newline, but in some way retaining the following line. Any plans to support this, or (likely) am I missing something?