(*cf)
| 83 | |
| 84 | |
| 85 | def _probe_config_folder(*cf): |
| 86 | # type: (str) -> Optional[pathlib.Path] |
| 87 | return _probe_xdg_folder( |
| 88 | "XDG_CONFIG_HOME", |
| 89 | os.path.join(os.path.expanduser("~"), ".config"), |
| 90 | *cf |
| 91 | ) |
| 92 | |
| 93 | |
| 94 | def _probe_cache_folder(*cf): |
no test coverage detected
searching dependent graphs…