Skip to content

Commit

Permalink
Set version to 3.1.7 + misc
Browse files Browse the repository at this point in the history
  • Loading branch information
Defxult committed Jun 21, 2024
1 parent 9a6b9f5 commit 19345b4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"
authors = [{name = "Defxult"}]
name = "reactionmenu"
readme = "README.md"
version = "3.1.6"
version = "3.1.7"
description = "A library to create a discord.py 2.0+ paginator. Supports pagination with buttons, reactions, and category selection using selects."
requires-python = ">=3.8"
license = {text = "MIT"}
Expand All @@ -18,6 +18,8 @@ classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules"
]
Expand Down
2 changes: 1 addition & 1 deletion reactionmenu/abc.py
Original file line number Diff line number Diff line change
Expand Up @@ -755,7 +755,7 @@ def convert_to_page(main_last: Iterable[discord.Embed]) -> List[Page]:

if self._main_page_contents:
self._main_page_contents.reverse()
self._pages.extendleft(convert_to_page(self._main_page_contents))
self._pages.extendleft(convert_to_page(self._main_page_contents)) # type: ignore (converted to deque above)

if self._last_page_contents:
self._pages.extend(convert_to_page(self._last_page_contents))
Expand Down

0 comments on commit 19345b4

Please sign in to comment.