(
self, cachedir: Path, config: Config, *, _ispytest: bool = False
)
| 65 | _CACHE_PREFIX_VALUES = "v" |
| 66 | |
| 67 | def __init__( |
| 68 | self, cachedir: Path, config: Config, *, _ispytest: bool = False |
| 69 | ) -> None: |
| 70 | check_ispytest(_ispytest) |
| 71 | self._cachedir = cachedir |
| 72 | self._config = config |
| 73 | |
| 74 | @classmethod |
| 75 | def for_config(cls, config: Config, *, _ispytest: bool = False) -> "Cache": |
nothing calls this directly
no test coverage detected