diff --git a/pyproject.toml b/pyproject.toml index 5f99d461..d3548378 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "royalnet-discordpy" -version = "6.6.1" +version = "6.6.2" description = "A Discord.py-based frontend for the royalnet.engineer module." authors = ["Stefano Pigozzi "] license = "AGPL-3.0-or-later" diff --git a/royalnet_discordpy/__init__.py b/royalnet_discordpy/__init__.py index c99e3461..559ee70b 100644 --- a/royalnet_discordpy/__init__.py +++ b/royalnet_discordpy/__init__.py @@ -2,3 +2,4 @@ A :mod:`telethon` -based implementation of the PDA class of the :mod:`royalnet.engineer` module. """ +from .pda import * diff --git a/royalnet_discordpy/pda.py b/royalnet_discordpy/pda.py index 5fe7332e..6e14f570 100644 --- a/royalnet_discordpy/pda.py +++ b/royalnet_discordpy/pda.py @@ -115,5 +115,6 @@ class DiscordpyPDAImplementation(engi.ConversationListImplementation): __all__ = ( + "DiscordpyPDAMode", "DiscordpyPDAImplementation", )