Apply pylint's linting rules to bfxapi/websocket/__init__.py, bfxapi/websocket/enums.py, bfxapi/websocket/exceptions.py, bfxapi/websocket/serializers.py and bfxapi/websocket/subscriptions.py.

This commit is contained in:
Davide Casale
2023-03-06 17:28:56 +01:00
parent 7288d05939
commit a7f5aa684a
6 changed files with 14 additions and 24 deletions

View File

@@ -1,3 +1,4 @@
#pylint: disable-next=wildcard-import,unused-wildcard-import
from .. enums import *
class Channel(str, Enum):
@@ -5,4 +6,4 @@ class Channel(str, Enum):
TRADES = "trades"
BOOK = "book"
CANDLES = "candles"
STATUS = "status"
STATUS = "status"