Transform one instance of special syntax found by ``find()`` Takes a list of strings representing physical lines, returns a similar list of transformed lines.
(self, lines: List[str])
| 202 | raise NotImplementedError |
| 203 | |
| 204 | def transform(self, lines: List[str]): |
| 205 | """Transform one instance of special syntax found by ``find()`` |
| 206 | |
| 207 | Takes a list of strings representing physical lines, |
| 208 | returns a similar list of transformed lines. |
| 209 | """ |
| 210 | raise NotImplementedError |
| 211 | |
| 212 | class MagicAssign(TokenTransformBase): |
| 213 | """Transformer for assignments from magics (a = %foo)""" |
nothing calls this directly
no outgoing calls
no test coverage detected