Return True if there is an yet unmatched open bracket on the line.
(self)
| 136 | return bool(self._for_loop_depths or self._lambda_argument_depths) |
| 137 | |
| 138 | def any_open_brackets(self) -> bool: |
| 139 | """Return True if there is an yet unmatched open bracket on the line.""" |
| 140 | return bool(self.bracket_match) |
| 141 | |
| 142 | def max_delimiter_priority(self, exclude: Iterable[LeafID] = ()) -> Priority: |
| 143 | """Return the highest priority of a delimiter found on the line. |
no outgoing calls
no test coverage detected