(raw: Optional[str])
| 152 | seen: set[str] = set() |
| 153 | |
| 154 | def _add(raw: Optional[str]) -> None: |
| 155 | if raw: |
| 156 | p = _normalize(raw) |
| 157 | if p and p not in seen: |
| 158 | changed.append(p) |
| 159 | seen.add(p) |
| 160 | |
| 161 | # 1) Committed changes since last generation |
| 162 | if prev_commit != current_commit: |
no test coverage detected