Load a project file.
(self, file_path: str)
| 307 | return self.command("csvExport.getStatus") |
| 308 | |
| 309 | def load_project(self, file_path: str) -> None: |
| 310 | """Load a project file.""" |
| 311 | self.command("project.open", {"filePath": file_path}) |
| 312 | |
| 313 | def create_new_project(self, title: Optional[str] = None) -> None: |
| 314 | """Create a new empty project.""" |