(self, index)
| 167 | class InteractivelyDefined(Exception): |
| 168 | """Exception for interactively defined variable in magic_edit""" |
| 169 | def __init__(self, index): |
| 170 | self.index = index |
| 171 | |
| 172 | |
| 173 | @magics_class |
nothing calls this directly
no outgoing calls
no test coverage detected