(self)
| 267 | return requests.get(self.thumbnail_url).content |
| 268 | |
| 269 | def _assert_permission(self): |
| 270 | session = self._assert_auth() |
| 271 | if session.username != self.author_name: |
| 272 | raise exceptions.Unauthorized("You need to be authenticated as the profile owner to do this.") |
| 273 | |
| 274 | def load_description(self): |
| 275 | # Overrides the load_description method that exists for unshared projects |
no test coverage detected