(self, shell)
| 29 | class ConfigMagics(Magics): |
| 30 | |
| 31 | def __init__(self, shell): |
| 32 | super(ConfigMagics, self).__init__(shell) |
| 33 | self.configurables = [] |
| 34 | |
| 35 | @line_magic |
| 36 | def config(self, s): |
nothing calls this directly
no outgoing calls
no test coverage detected