From eba71bad71ec558139f0447d5f86f349072a0370 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Mon, 18 Apr 2022 21:17:58 +0200 Subject: [PATCH] :sparkles: Export the PDAImplementation --- pyproject.toml | 2 +- royalnet_telethon/__init__.py | 1 + royalnet_telethon/pda.py | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index ef377c55..e29fc168 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "royalnet-telethon" -version = "6.6.0" +version = "6.6.2" description = "A Telethon-based frontend for the royalnet.engineer module." authors = ["Stefano Pigozzi "] license = "AGPL-3.0-or-later" diff --git a/royalnet_telethon/__init__.py b/royalnet_telethon/__init__.py index c99e3461..559ee70b 100644 --- a/royalnet_telethon/__init__.py +++ b/royalnet_telethon/__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_telethon/pda.py b/royalnet_telethon/pda.py index 50ccb86f..257ddc44 100644 --- a/royalnet_telethon/pda.py +++ b/royalnet_telethon/pda.py @@ -154,5 +154,6 @@ class TelethonPDAImplementation(engi.ConversationListImplementation): __all__ = ( + "TelethonPDAMode", "TelethonPDAImplementation", )