(self)
| 84 | # Methods for getting related entities |
| 85 | |
| 86 | def author(self) -> user.User: |
| 87 | return self._make_linked_object("username", self.author_name, user.User, exceptions.UserNotFound) |
| 88 | |
| 89 | def place(self) -> user.User | studio.Studio | project.Project: |
| 90 | """ |
nothing calls this directly
no test coverage detected