Return the most recent opening square bracket (if any).
(self)
| 212 | return False |
| 213 | |
| 214 | def get_open_lsqb(self) -> Leaf | None: |
| 215 | """Return the most recent opening square bracket (if any).""" |
| 216 | return self.bracket_match.get((self.depth - 1, token.RSQB)) |
| 217 | |
| 218 | |
| 219 | def is_split_after_delimiter(leaf: Leaf) -> Priority: |
no outgoing calls
no test coverage detected