(self)
| 79 | self._fetched = True |
| 80 | |
| 81 | def _fetch_data(self) -> Any: |
| 82 | name, fields, params = self._fetch_info() |
| 83 | path = API_PATH[name].format(**fields) |
| 84 | return self._reddit.request(method="GET", params=params, path=path) |
| 85 | |
| 86 | def _reset_attributes(self, *attributes: str) -> None: |
| 87 | for attribute in attributes: |