(self)
| 43 | return self.text |
| 44 | |
| 45 | def update(self): |
| 46 | warnings.warn("Warning: Comment objects can't be updated") |
| 47 | return False # Objects of this type cannot be updated |
| 48 | |
| 49 | def _update_from_dict(self, data: dict[str, str | dict | Any]): |
| 50 | self.id = data["id"] |
no outgoing calls
no test coverage detected