(
self, cachedir: Path, config: Config, *, _ispytest: bool = False
)
| 101 | _CACHE_PREFIX_VALUES = "v" |
| 102 | |
| 103 | def __init__( |
| 104 | self, cachedir: Path, config: Config, *, _ispytest: bool = False |
| 105 | ) -> None: |
| 106 | check_ispytest(_ispytest) |
| 107 | self._cachedir = cachedir |
| 108 | self._config = config |
| 109 | |
| 110 | @classmethod |
| 111 | def for_config(cls, config: Config, *, _ispytest: bool = False) -> Cache: |
nothing calls this directly
no test coverage detected