Exception for interactively defined variable in magic_edit
| 165 | |
| 166 | |
| 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 |