Print docstring if incorrect arguments were passed
(self,func)
| 541 | super(Magics, self).__init__(**kwargs) |
| 542 | |
| 543 | def arg_err(self,func): |
| 544 | """Print docstring if incorrect arguments were passed""" |
| 545 | print('Error in arguments:') |
| 546 | print(oinspect.getdoc(func)) |
| 547 | |
| 548 | def format_latex(self, strng): |
| 549 | """Format a string for latex inclusion.""" |