Gets the remainder of the line, after a Google header.
(line_info)
| 670 | |
| 671 | |
| 672 | def _get_after_google_header(line_info): |
| 673 | """Gets the remainder of the line, after a Google header.""" |
| 674 | colon_index = line_info.remaining.find(':') |
| 675 | return line_info.remaining[colon_index + 1:] |
| 676 | |
| 677 | |
| 678 | def _get_directive(line_info): |
no outgoing calls
no test coverage detected