(loc: str | None)
| 174 | |
| 175 | |
| 176 | def normalize_location(loc: str | None) -> str | None: |
| 177 | if not loc: |
| 178 | return None |
| 179 | return loc.strip() |
| 180 | |
| 181 | |
| 182 | def location_matches(expected_target: str, actual_location: str | None) -> bool: |
no test coverage detected