(line)
| 8 | magics = shell.magics_manager.magics |
| 9 | |
| 10 | def _strip_underline(line): |
| 11 | chars = set(line.strip()) |
| 12 | if len(chars) == 1 and ("-" in chars or "=" in chars): |
| 13 | return "" |
| 14 | else: |
| 15 | return line |
| 16 | |
| 17 | def format_docstring(func): |
| 18 | docstring = (func.__doc__ or "Undocumented").rstrip() |
no outgoing calls
no test coverage detected
searching dependent graphs…