MCPcopy Create free account
hub / github.com/Breakthrough/PySceneDetect / format_epilog

Method format_epilog

scenedetect/_cli/__init__.py:139–144  ·  view source on GitHub ↗

Writes the epilog into the formatter if it exists.

(self, ctx: click.Context, formatter: click.HelpFormatter)

Source from the content-addressed store, hash-verified

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
147class CommandGroup(Command, click.Group):

Callers 1

format_helpMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected