Get the default macOS cache dir.
(name: str)
| 40 | |
| 41 | |
| 42 | def _macos_cache_dir(name: str) -> Path: |
| 43 | """Get the default macOS cache dir.""" |
| 44 | return Path.home() / "Library" / "Caches" / name |
| 45 | |
| 46 | |
| 47 | def _linux_cache_dir(name: str) -> Path: |
no outgoing calls
no test coverage detected