diff options
author | 2021-01-27 13:02:06 +0530 | |
---|---|---|
committer | 2021-01-27 13:02:06 +0530 | |
commit | c9f0d26601f7d3bf01257fbff9384df76aa381f6 (patch) | |
tree | dfc805706acc910abf71fbdbdbf5219c1c7c8975 | |
parent | Merge branch 'master' of https://github.com/python-discord/sir-lancebot into ... (diff) |
Fix lint error: Missing type annotation for function arugment
`paginate`.
-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 = "" |