(config: EvoGitConfig, commits: list[str])
| 476 | |
| 477 | |
| 478 | def batch_read_files(config: EvoGitConfig, commits: list[str]) -> list[str]: |
| 479 | return [read_file(config, commit) for commit in commits] |
| 480 | |
| 481 | |
| 482 | def has_conflict(config: EvoGitConfig) -> bool: |
nothing calls this directly
no test coverage detected