Fix small bug in bfxapi/websocket/errors.py (__all__).

This commit is contained in:
Davide Casale
2022-11-21 18:41:40 +01:00
parent 92f6e691f5
commit 2f561a4fba

View File

@@ -1,7 +1,9 @@
__all__ = [ __all__ = [
"BfxWebsocketException",
"ConnectionNotOpen", "ConnectionNotOpen",
"InvalidAuthenticationCredentials" "WebsocketAuthenticationRequired",
"InvalidAuthenticationCredentials",
"EventNotSupported",
"OutdatedClientVersion"
] ]
class BfxWebsocketException(Exception): class BfxWebsocketException(Exception):