(cloud: _base.BaseCloud)
| 108 | Returns the project where the cloud activity was performed as scratchattach.project.Project object |
| 109 | """ |
| 110 | def make_linked(cloud: _base.BaseCloud) -> project_module.Project: |
| 111 | return self._make_linked_object("id", cloud.project_id, project_module.Project, exceptions.ProjectNotFound) |
| 112 | if self.cloud is None: |
| 113 | return None |
| 114 | cloud = self.cloud |
nothing calls this directly
no test coverage detected