Print docstring if incorrect arguments were passed
(self, func: Callable[..., Any])
| 656 | super(Magics, self).__init__(**kwargs) |
| 657 | |
| 658 | def arg_err(self, func: Callable[..., Any]) -> None: |
| 659 | """Print docstring if incorrect arguments were passed""" |
| 660 | print("Error in arguments:") |
| 661 | print(oinspect.getdoc(func)) |
| 662 | |
| 663 | def format_latex(self, strng: str) -> str: |
| 664 | """Format a string for latex inclusion.""" |