Print the alias parts of the help.
(self)
| 508 | print(f" .{traitname} = {pprint.pformat(value, **pformat_kwargs)}") |
| 509 | |
| 510 | def print_alias_help(self) -> None: |
| 511 | """Print the alias parts of the help.""" |
| 512 | print("\n".join(self.emit_alias_help())) |
| 513 | |
| 514 | def emit_alias_help(self) -> t.Generator[str, None, None]: |
| 515 | """Yield the lines for alias part of the help.""" |