()
| 147 | |
| 148 | |
| 149 | def _rscript_exec() -> str: |
| 150 | r_home = os.environ.get('R_HOME') |
| 151 | if r_home is None: |
| 152 | return 'Rscript' |
| 153 | else: |
| 154 | return os.path.join(r_home, 'bin', win_exe('Rscript')) |
| 155 | |
| 156 | |
| 157 | def _entry_validate(entry: list[str]) -> None: |
no test coverage detected