Count lines containing RustPython TODO markers.
(content: str)
| 146 | |
| 147 | |
| 148 | def count_rustpython_todo(content: str) -> int: |
| 149 | """Count lines containing RustPython TODO markers.""" |
| 150 | return content.count(TODO_MARKER) |
| 151 | |
| 152 | |
| 153 | def count_todo_in_path(path: pathlib.Path) -> int: |
no test coverage detected