Get the project that owns this folder :return: Project that owns this folder
(self)
| 220 | |
| 221 | @property |
| 222 | def project(self) -> 'Project': |
| 223 | """ |
| 224 | Get the project that owns this folder |
| 225 | |
| 226 | :return: Project that owns this folder |
| 227 | """ |
| 228 | proj_handle = core.BNProjectFolderGetProject(self._handle) |
| 229 | |
| 230 | if proj_handle is None: |
| 231 | raise ProjectException("Failed to get project for folder") |
| 232 | |
| 233 | return Project(handle=proj_handle) |
| 234 | |
| 235 | @property |
| 236 | def id(self) -> str: |
nothing calls this directly
no test coverage detected