(self, file: IO[Any] | None = None)
| 227 | super().__init__(ctx.get_help(), ctx=ctx) |
| 228 | |
| 229 | def show(self, file: IO[Any] | None = None) -> None: |
| 230 | echo(self.format_message(), file=file, err=True, color=self.ctx.color) |
| 231 | |
| 232 | |
| 233 | class FileError(ClickException): |
nothing calls this directly
no test coverage detected