(cls)
| 1064 | |
| 1065 | @classmethod |
| 1066 | def _pyenv(cls): |
| 1067 | # type: () -> Optional[Pyenv] |
| 1068 | if isinstance(cls._PYENV, tuple): |
| 1069 | cls._PYENV = Pyenv.find() |
| 1070 | return cls._PYENV |
| 1071 | |
| 1072 | @classmethod |
| 1073 | def _resolve_pyenv_shim( |
no test coverage detected