(*cf)
| 92 | |
| 93 | |
| 94 | def _probe_cache_folder(*cf): |
| 95 | # type: (str) -> Optional[pathlib.Path] |
| 96 | return _probe_xdg_folder( |
| 97 | "XDG_CACHE_HOME", |
| 98 | os.path.join(os.path.expanduser("~"), ".cache"), |
| 99 | *cf |
| 100 | ) |
| 101 | |
| 102 | |
| 103 | def _probe_share_folder(*cf): |
no test coverage detected