()
| 1148 | |
| 1149 | @staticmethod |
| 1150 | def load_report() -> Dict: |
| 1151 | with open(EnvironmentReporter.REPORT_FILE, "r") as fs: |
| 1152 | return json.loads(fs.read()) |
| 1153 | |
| 1154 | @staticmethod |
| 1155 | def add_python_env(add_type: str, path: str) -> Optional[str]: |
no test coverage detected