r"""Return a :class:`.RedditorList` of blocked :class:`.Redditor`\ s.
(self)
| 64 | super().__init__(reddit, _data=None) |
| 65 | |
| 66 | def blocked(self) -> list[models.Redditor]: |
| 67 | r"""Return a :class:`.RedditorList` of blocked :class:`.Redditor`\ s.""" |
| 68 | return self._reddit.get(API_PATH["blocked"]) |
| 69 | |
| 70 | def contributor_subreddits(self, **generator_kwargs: Any) -> Iterator[models.Subreddit]: |
| 71 | r"""Return a :class:`.ListingGenerator` of contributor :class:`.Subreddit`\ s. |