Generate comments that should appear directly after `leaf`.
(self, leaf: Leaf)
| 415 | return True |
| 416 | |
| 417 | def comments_after(self, leaf: Leaf) -> list[Leaf]: |
| 418 | """Generate comments that should appear directly after `leaf`.""" |
| 419 | return self.comments.get(id(leaf), []) |
| 420 | |
| 421 | def remove_trailing_comma(self) -> None: |
| 422 | """Remove the trailing comma and moves the comments attached to it.""" |
no outgoing calls
no test coverage detected