(self)
| 392 | shutil.move(str(object_path), str(output_path)) |
| 393 | |
| 394 | def load(self) -> Module: |
| 395 | with tempfile.TemporaryDirectory() as temp_dir_str: |
| 396 | output_path = Path(temp_dir_str) / f"main{self.output_suffix}" |
| 397 | self.compile(output_path) |
| 398 | return self._load(output_path) |