Exception for interactively defined variable in magic_edit
| 169 | |
| 170 | |
| 171 | class InteractivelyDefined(Exception): |
| 172 | """Exception for interactively defined variable in magic_edit""" |
| 173 | def __init__(self, index): |
| 174 | self.index = index |
| 175 | |
| 176 | |
| 177 | @magics_class |
no outgoing calls
no test coverage detected
searching dependent graphs…