(name: str)
| 336 | |
| 337 | |
| 338 | def _benchmark_lookup_key(name: str) -> str: |
| 339 | return "".join(character.lower() for character in name if character.isalnum()) |
| 340 | |
| 341 | |
| 342 | def _infer_arch(details: dict[str, Any], source_path: Path) -> str: |
no outgoing calls
no test coverage detected