From 2f561a4fba40153eb039ff082e1ae02bae9a6a97 Mon Sep 17 00:00:00 2001 From: Davide Casale Date: Mon, 21 Nov 2022 18:41:40 +0100 Subject: [PATCH] Fix small bug in bfxapi/websocket/errors.py (__all__). --- bfxapi/websocket/errors.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/bfxapi/websocket/errors.py b/bfxapi/websocket/errors.py index 7565bc9..c631cca 100644 --- a/bfxapi/websocket/errors.py +++ b/bfxapi/websocket/errors.py @@ -1,7 +1,9 @@ __all__ = [ - "BfxWebsocketException", "ConnectionNotOpen", - "InvalidAuthenticationCredentials" + "WebsocketAuthenticationRequired", + "InvalidAuthenticationCredentials", + "EventNotSupported", + "OutdatedClientVersion" ] class BfxWebsocketException(Exception):