(self)
| 467 | yield index, leaf, length |
| 468 | |
| 469 | def clone(self) -> "Line": |
| 470 | return Line( |
| 471 | mode=self.mode, |
| 472 | depth=self.depth, |
| 473 | inside_brackets=self.inside_brackets, |
| 474 | should_split_rhs=self.should_split_rhs, |
| 475 | magic_trailing_comma=self.magic_trailing_comma, |
| 476 | ) |
| 477 | |
| 478 | def __str__(self) -> str: |
| 479 | """Render the line.""" |
no test coverage detected