I am line foo
(self, line)
| 1015 | """class with both %foo and %%foo magics""" |
| 1016 | @line_magic('foo') |
| 1017 | def line_foo(self, line): |
| 1018 | "I am line foo" |
| 1019 | pass |
| 1020 | |
| 1021 | @cell_magic("foo") |
| 1022 | def cell_foo(self, line, cell): |
nothing calls this directly
no outgoing calls
no test coverage detected