Writes the epilog into the formatter if it exists.
(self, ctx: click.Context, formatter: click.HelpFormatter)
| 137 | formatter.write_text(text) |
| 138 | |
| 139 | def format_epilog(self, ctx: click.Context, formatter: click.HelpFormatter) -> None: |
| 140 | """Writes the epilog into the formatter if it exists.""" |
| 141 | if self.epilog: |
| 142 | epilog = inspect.cleandoc(self.epilog) |
| 143 | formatter.write_paragraph() |
| 144 | formatter.write_text(epilog) |
| 145 | |
| 146 | |
| 147 | class CommandGroup(Command, click.Group): |