From 1b433b741b1da9fd78c1f02e4c562d982269ad31 Mon Sep 17 00:00:00 2001 From: James Lu Date: Sat, 5 Jun 2021 00:39:18 -0700 Subject: [PATCH] classes: add ProtocolError to __all__ --- classes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes.py b/classes.py index 05240c5..69e9bb4 100644 --- a/classes.py +++ b/classes.py @@ -27,7 +27,7 @@ from .utils import ProtocolError # Compatibility with PyLink 1.x __all__ = ['ChannelState', 'User', 'UserMapping', 'PyLinkNetworkCore', 'PyLinkNetworkCoreWithUtils', 'IRCNetwork', 'Server', 'Channel', - 'PUIDGenerator'] + 'PUIDGenerator', 'ProtocolError'] QUEUE_FULL = queue.Full