(self)
| 734 | super().__setattr__(attribute, value) |
| 735 | |
| 736 | def _fetch(self) -> None: |
| 737 | url = API_PATH["live_focus"].format(thread_id=self.thread.id, update_id=self.id) |
| 738 | other = self._reddit.get(url)[0] |
| 739 | self.__dict__.update(other.__dict__) |
| 740 | super()._fetch() |
| 741 | |
| 742 | |
| 743 | class LiveUpdateContribution: |