Returns whether the line is entirely hyphens (and not blank).
(line)
| 722 | |
| 723 | |
| 724 | def _line_is_hyphens(line): |
| 725 | """Returns whether the line is entirely hyphens (and not blank).""" |
| 726 | return line and not line.strip('-') |
| 727 | |
| 728 | |
| 729 | def _numpy_section(line_info): |
no outgoing calls
no test coverage detected