Skip to content

Commit

Permalink
expose the paginator & its dependencies from the pydis_core package
Browse files Browse the repository at this point in the history
  • Loading branch information
shtlrs committed Jan 4, 2024
1 parent eae78e9 commit bdc30b7
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pydis_core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

from pydis_core import async_stats, exts, site_api, utils
from pydis_core._bot import BotBase, StartupError
from pydis_core.utils.pagination import EmptyPaginatorEmbedError, LinePaginator, PaginationEmojis

__all__ = [
async_stats,
Expand All @@ -10,6 +11,9 @@
utils,
site_api,
StartupError,
LinePaginator,
PaginationEmojis,
EmptyPaginatorEmbedError
]

__all__ = [module.__name__ for module in __all__]
4 changes: 4 additions & 0 deletions pydis_core/utils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
interactions,
logging,
members,
messages,
pagination,
paste_service,
regex,
scheduling,
Expand Down Expand Up @@ -45,6 +47,8 @@ def apply_monkey_patches() -> None:
interactions,
logging,
members,
messages,
pagination,
paste_service,
regex,
scheduling,
Expand Down
File renamed without changes.

0 comments on commit bdc30b7

Please sign in to comment.