(line: str, indent: str)
| 183 | |
| 184 | |
| 185 | def _should_continue(line: str, indent: str) -> bool: |
| 186 | # Helper function. Returns `True` if `line` is empty, starts with the `indent` or is the end parenthesis of a |
| 187 | # class/function definition |
| 188 | return line.startswith(indent) or len(line.strip()) == 0 or _is_definition_header_ending_line(line) |
| 189 | |
| 190 | |
| 191 | def _sanity_check_splits(splits_1, splits_2, is_class, filename): |
no test coverage detected