(self, file: t.IO[t.Any] | None = None)
| 336 | super().__init__(ctx.get_help(), ctx=ctx) |
| 337 | |
| 338 | def show(self, file: t.IO[t.Any] | None = None) -> None: |
| 339 | echo(self.format_message(), file=file, err=True, color=self.ctx.color) |
| 340 | |
| 341 | |
| 342 | class FileError(ClickException): |
nothing calls this directly
no test coverage detected