(*cf)
| 101 | |
| 102 | |
| 103 | def _probe_share_folder(*cf): |
| 104 | # type: (str) -> Optional[pathlib.Path] |
| 105 | return _probe_xdg_folder( |
| 106 | "XDG_DATA_HOME", |
| 107 | os.path.join(os.path.expanduser("~"), ".local", "share"), |
| 108 | *cf |
| 109 | ) |
| 110 | |
| 111 | |
| 112 | def _check_perms(file: Union[pathlib.Path, str]) -> None: |
no test coverage detected
searching dependent graphs…