| 330 | |
| 331 | |
| 332 | class NoArgsIsHelpError(UsageError): |
| 333 | ctx: Context |
| 334 | |
| 335 | def __init__(self, ctx: Context) -> 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): |
no outgoing calls
no test coverage detected
searching dependent graphs…