From fea4ee83be8122bacbb7d8008e431d2b6877225a Mon Sep 17 00:00:00 2001 From: nicoco Date: Mon, 5 Jun 2023 20:54:20 +0200 Subject: [PATCH] fix slixmpp.xmlstream.__all__ --- slixmpp/xmlstream/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/slixmpp/xmlstream/__init__.py b/slixmpp/xmlstream/__init__.py index 6c27c0cb..ee3b0f75 100644 --- a/slixmpp/xmlstream/__init__.py +++ b/slixmpp/xmlstream/__init__.py @@ -10,5 +10,5 @@ from slixmpp.xmlstream.tostring import tostring, highlight from slixmpp.xmlstream.xmlstream import XMLStream, RESPONSE_TIMEOUT __all__ = ['JID', 'StanzaBase', 'ElementBase', - 'ET', 'StateMachine', 'tostring', 'highlight', 'XMLStream', - 'RESPONSE_TIMEOUT'] + 'ET', 'tostring', 'highlight', 'XMLStream', + 'RESPONSE_TIMEOUT', 'register_stanza_plugin']