(dist_name: str)
| 324 | |
| 325 | |
| 326 | def _version(dist_name: str) -> str: |
| 327 | try: |
| 328 | return metadata.version(dist_name) |
| 329 | except Exception: |
| 330 | return "not-installed" |
| 331 | |
| 332 | |
| 333 | def _module_path(module_name: str) -> str: |
no outgoing calls
no test coverage detected