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