diff options
Diffstat (limited to 'bot/exts')
| -rw-r--r-- | bot/exts/evergreen/reddit.py | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/evergreen/reddit.py b/bot/exts/evergreen/reddit.py index f5134105..1a4f9add 100644 --- a/bot/exts/evergreen/reddit.py +++ b/bot/exts/evergreen/reddit.py @@ -58,7 +58,7 @@ class Reddit(Cog):          """Get the #reddit channel object from the bot's cache."""          return self.bot.get_channel(Channels.reddit) -    def build_pagination_pages(self, posts: List[dict], paginate) -> Union[List[tuple], str]: +    def build_pagination_pages(self, posts: List[dict], paginate: bool) -> Union[List[tuple], str]:          """Build embed pages required for Paginator."""          pages = []          first_page = ""  |