(self)
| 213 | return textlist |
| 214 | |
| 215 | def _check_session(self) -> None: |
| 216 | if self._session is None: |
| 217 | raise exceptions.Unauthenticated( |
| 218 | f"Classroom {self} has no associated session. Use session.connect_classroom() instead of sa.get_classroom()") |
| 219 | |
| 220 | def set_thumbnail(self, thumbnail: bytes) -> None: |
| 221 | self._check_session() |
no outgoing calls
no test coverage detected