Find and return a line magic by name. Returns None if the magic isn't found.
(self, magic_name)
| 2382 | return result |
| 2383 | |
| 2384 | def find_line_magic(self, magic_name): |
| 2385 | """Find and return a line magic by name. |
| 2386 | |
| 2387 | Returns None if the magic isn't found.""" |
| 2388 | return self.magics_manager.magics['line'].get(magic_name) |
| 2389 | |
| 2390 | def find_cell_magic(self, magic_name): |
| 2391 | """Find and return a cell magic by name. |
no outgoing calls