From 26fb0d1f91e52b26b9c6fee65ad5858696d6b499 Mon Sep 17 00:00:00 2001 From: nicoco Date: Tue, 22 Nov 2022 10:32:59 +0100 Subject: [PATCH] add BasePlugin to plugins.__all__ --- slixmpp/plugins/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/slixmpp/plugins/__init__.py b/slixmpp/plugins/__init__.py index be01b06e..95a8582f 100644 --- a/slixmpp/plugins/__init__.py +++ b/slixmpp/plugins/__init__.py @@ -114,4 +114,6 @@ __all__ = [ 'xep_0441', # Message Archive Management Preferences 'xep_0444', # Message Reactions 'xep_0461', # Message Replies + # Meant to be imported by plugins + 'BasePlugin' ]