(self, shell)
| 70 | ).tag(config=True) |
| 71 | |
| 72 | def __init__(self, shell): |
| 73 | super(StoreMagics, self).__init__(shell=shell) |
| 74 | self.shell.configurables.append(self) |
| 75 | if self.autorestore: |
| 76 | restore_data(self.shell) |
| 77 | |
| 78 | @skip_doctest |
| 79 | @line_magic |
nothing calls this directly
no test coverage detected